home / media

streams

6 rows where v_uid = "v_livsb"

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
167 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://javclan.com/e/2fbrc7ia84e6 https://jav.guru/searcho/?xr=326662726337696138346536   embed 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://javclan.com/e/2fbrc7ia84e6
168 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://turbovidhls.com/t/68efa0209209d https://jav.guru/searcho/?ur=36386566613032303932303964 https://cdn3.turboviplay.com/data3/68efa0209209d/68efa0209209d.m3u8 m3u8 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://turbovidhls.com/t/68efa0209209d
169 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://tracylocalschool.com/e/ovkw79qvfxqh https://jav.guru/searcho/?tr=6f766b773739717666787168   embed 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://tracylocalschool.com/e/ovkw79qvfxqh
170 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://streamhihi.com/e/r2n9rx2pmpr6 https://jav.guru/searcho/?er=652f72326e39727832706d707236   embed 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://streamhihi.com/e/r2n9rx2pmpr6
171 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://vide0.net/e/mnm44nb406d9 https://jav.guru/searcho/?hr=6d6e6d34346e623430366439   embed 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://vide0.net/e/mnm44nb406d9
172 v_livsb javguru https://jav.guru/789625/lcbd-01055-rina-hashimoto-rina-notice-me/ https://maxstream.org/embed-m4kg88g7p3wq.html https://jav.guru/searcho/?or=656d6265642d6d346b6738386737703377712e68746d6c   embed 2026-08-30 09:16:17 2026-08-30 09:16:17 javguru https://maxstream.org/embed-m4kg88g7p3wq.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.404ms