home / media

streams

6 rows where v_uid = "v_jcg30"

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
1061 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://javclan.com/e/7cmy4fxxktal https://jav.guru/searcho/?xr=37636d79346678786b74616c   embed 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://javclan.com/e/7cmy4fxxktal
1062 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://turbovidhls.com/t/68ed40268d713 https://jav.guru/searcho/?ur=36386564343032363864373133 https://cdn3.turboviplay.com/data3/68ed40268d713/68ed40268d713.m3u8 m3u8 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://turbovidhls.com/t/68ed40268d713
1063 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://tracylocalschool.com/e/esek5jzbfyki https://jav.guru/searcho/?tr=6573656b356a7a6266796b69   embed 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://tracylocalschool.com/e/esek5jzbfyki
1064 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://streamhihi.com/e/fdz10zbtyf49 https://jav.guru/searcho/?er=652f66647a31307a627479663439   embed 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://streamhihi.com/e/fdz10zbtyf49
1065 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://vide0.net/e/0ebri4pj4t9r https://jav.guru/searcho/?hr=306562726934706a34743972   embed 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://vide0.net/e/0ebri4pj4t9r
1066 v_jcg30 javguru https://jav.guru/787739/lcbd-00728-iroha-yanagi-irohas-white-paper/ https://maxstream.org/embed-nlhbc51swz0g.html https://jav.guru/searcho/?or=656d6265642d6e6c686263353173777a30672e68746d6c   embed 2026-08-30 09:59:49 2026-08-30 09:59:49 javguru https://maxstream.org/embed-nlhbc51swz0g.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 4.186ms