home / media

streams

6 rows where v_uid = "v_aolbm"

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
245 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://javclan.com/e/renavhw2jpbb https://jav.guru/searcho/?xr=72656e61766877326a706262   embed 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://javclan.com/e/renavhw2jpbb
246 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://turbovidhls.com/t/68ef9d2f98dcb https://jav.guru/searcho/?ur=36386566396432663938646362 https://cdn3.turboviplay.com/data3/68ef9d2f98dcb/68ef9d2f98dcb.m3u8 m3u8 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://turbovidhls.com/t/68ef9d2f98dcb
247 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://tracylocalschool.com/e/rwhmin74vrxm https://jav.guru/searcho/?tr=7277686d696e37347672786d   embed 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://tracylocalschool.com/e/rwhmin74vrxm
248 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://streamhihi.com/e/uo53fb0rdqv9 https://jav.guru/searcho/?er=652f756f35336662307264717639   embed 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://streamhihi.com/e/uo53fb0rdqv9
249 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://vide0.net/e/bm8yo0o63cvq https://jav.guru/searcho/?hr=626d38796f306f3633637671   embed 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://vide0.net/e/bm8yo0o63cvq
250 v_aolbm javguru https://jav.guru/789634/kidm-582b-title-undecided-hamada-noriko/ https://maxstream.org/embed-z62t2zoq3u2m.html https://jav.guru/searcho/?or=656d6265642d7a363274327a6f713375326d2e68746d6c   embed 2026-08-30 09:52:28 2026-08-30 09:52:28 javguru https://maxstream.org/embed-z62t2zoq3u2m.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.225ms