home / media

streams

6 rows where v_uid = "v_winye"

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
1175 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://javclan.com/e/kzt4xsdb00cs https://jav.guru/searcho/?xr=6b7a74347873646230306373   embed 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://javclan.com/e/kzt4xsdb00cs
1176 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://turbovidhls.com/t/68ed4216cfdf7 https://jav.guru/searcho/?ur=36386564343231366366646637 https://cdn3.turboviplay.com/data3/68ed4216cfdf7/68ed4216cfdf7.m3u8 m3u8 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://turbovidhls.com/t/68ed4216cfdf7
1177 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://tracylocalschool.com/e/f1w8h5xh275u https://jav.guru/searcho/?tr=663177386835786832373575   embed 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://tracylocalschool.com/e/f1w8h5xh275u
1178 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://streamhihi.com/e/lmwjzs3qxpqx https://jav.guru/searcho/?er=652f6c6d776a7a73337178707178   embed 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://streamhihi.com/e/lmwjzs3qxpqx
1179 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://vide0.net/e/bckph5n1vj95 https://jav.guru/searcho/?hr=62636b7068356e31766a3935   embed 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://vide0.net/e/bckph5n1vj95
1180 v_winye javguru https://jav.guru/787719/mbr-ba022-yukie-tomaru-sorciere/ https://maxstream.org/embed-a1120tvfwla8.html https://jav.guru/searcho/?or=656d6265642d6131313230747666776c61382e68746d6c   embed 2026-08-30 10:00:41 2026-08-30 10:00:41 javguru https://maxstream.org/embed-a1120tvfwla8.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.291ms