home / media

streams

6 rows where v_uid = "v_st5c1"

This data as json, CSV (advanced)

Suggested facets: kind, addedAt (date), updatedAt (date)

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1127 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://javclan.com/e/xqlw5if8gags https://jav.guru/searcho/?xr=78716c773569663867616773   embed 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://javclan.com/e/xqlw5if8gags
1128 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://turbovidhls.com/t/68ed40d568dd4 https://jav.guru/searcho/?ur=36386564343064353638646434 https://cdn3.turboviplay.com/data3/68ed40d568dd4/68ed40d568dd4.m3u8 m3u8 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://turbovidhls.com/t/68ed40d568dd4
1129 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://tracylocalschool.com/e/prbpbxbrpsft https://jav.guru/searcho/?tr=707262706278627270736674   embed 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://tracylocalschool.com/e/prbpbxbrpsft
1130 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://streamhihi.com/e/s4y8re2fuguo https://jav.guru/searcho/?er=652f73347938726532667567756f   embed 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://streamhihi.com/e/s4y8re2fuguo
1131 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://vide0.net/e/8pfmmpo5si4h https://jav.guru/searcho/?hr=3870666d6d706f3573693468   embed 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://vide0.net/e/8pfmmpo5si4h
1132 v_st5c1 javguru https://jav.guru/787731/lcdv-41068-konno-shiori-house-girl/ https://maxstream.org/embed-8drx3a96dipv.html https://jav.guru/searcho/?or=656d6265642d3864727833613936646970762e68746d6c   embed 2026-08-30 10:00:19 2026-08-30 10:00:19 javguru https://maxstream.org/embed-8drx3a96dipv.html

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE streams (
  id         INTEGER PRIMARY KEY,
  v_uid      TEXT NOT NULL REFERENCES videos(uid) ON DELETE CASCADE,
  source     TEXT NOT NULL,
  sourceUrl  TEXT,
  embedUrl   TEXT,
  proxyUrl   TEXT,
  directLink TEXT,
  kind       TEXT NOT NULL DEFAULT 'embed'
               CHECK (kind IN ('embed', 'm3u8', 'mp4', 'webm', 'ts')),
  addedAt    TEXT NOT NULL DEFAULT (datetime('now')),
  updatedAt  TEXT NOT NULL DEFAULT (datetime('now')),

  dedupe TEXT GENERATED ALWAYS AS (
    source || char(10) || coalesce(embedUrl, proxyUrl, directLink, sourceUrl, '')
  ) STORED,
  UNIQUE (v_uid, dedupe)
);
CREATE INDEX idx_streams_video  ON streams(v_uid);
CREATE INDEX idx_streams_source ON streams(source);
Powered by Datasette · Queries took 3.741ms