home / media

streams

6 rows where v_uid = "v_sc1ai"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
2194 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://javclan.com/e/aed3bkkyxfdt https://jav.guru/searcho/?xr=61656433626b6b7978666474   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://javclan.com/e/aed3bkkyxfdt
2195 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://turbovidhls.com/t/68ea97603c11c https://jav.guru/searcho/?ur=36386561393736303363313163   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://turbovidhls.com/t/68ea97603c11c
2196 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://tracylocalschool.com/e/wvtu9c26ei6g https://jav.guru/searcho/?tr=777674753963323665693667   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://tracylocalschool.com/e/wvtu9c26ei6g
2197 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://streamhihi.com/e/kvgfhynvy817 https://jav.guru/searcho/?er=652f6b76676668796e7679383137   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://streamhihi.com/e/kvgfhynvy817
2198 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://vide0.net/e/j0gttxkasfh4 https://jav.guru/searcho/?hr=6a30677474786b6173666834   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://vide0.net/e/j0gttxkasfh4
2199 v_sc1ai javguru https://jav.guru/785300/hunta-826-lets-take-a-bath-together-for-the-first-time-in-a-while-since-ill-wash-your/ https://maxstream.org/embed-2w57ta202bv1.html https://jav.guru/searcho/?or=656d6265642d3277353774613230326276312e68746d6c   embed 2026-08-30 14:08:46 2026-08-30 14:08:46 javguru https://maxstream.org/embed-2w57ta202bv1.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.074ms