home / media

streams

4 rows where v_uid = "v_4xqhf"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1884 v_4xqhf javguru https://jav.guru/134764/gvh-192-forbidden-care-kana-morisawa/ https://javclan.com/e/is3frlm6huov https://jav.guru/searcho/?xr=69733366726c6d3668756f76   embed 2026-08-30 14:06:01 2026-08-30 14:06:01 javguru https://javclan.com/e/is3frlm6huov
1885 v_4xqhf javguru https://jav.guru/134764/gvh-192-forbidden-care-kana-morisawa/ https://javplaya.com/embed/ttjrrh3g5nwj https://jav.guru/searcho/?rr=74746a7272683367356e776a   embed 2026-08-30 14:06:01 2026-08-30 14:06:01 javguru https://javplaya.com/embed/ttjrrh3g5nwj
1886 v_4xqhf javguru https://jav.guru/134764/gvh-192-forbidden-care-kana-morisawa/ https://vide0.net/e/t3cybtrmxtcpllhcngqyntj6xan3xj24 https://jav.guru/searcho/?hr=743363796274726d787463706c6c68636e6771796e746a3678616e33786a3234   embed 2026-08-30 14:06:01 2026-08-30 14:06:01 javguru https://vide0.net/e/t3cybtrmxtcpllhcngqyntj6xan3xj24
1887 v_4xqhf javguru https://jav.guru/134764/gvh-192-forbidden-care-kana-morisawa/ https://maxstream.org/embed-ipfgml05jbyh.html https://jav.guru/searcho/?or=656d6265642d697066676d6c30356a6279682e68746d6c   embed 2026-08-30 14:06:01 2026-08-30 14:06:01 javguru https://maxstream.org/embed-ipfgml05jbyh.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.433ms