home / media

streams

5 rows where v_uid = "v_huahe"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1214 v_huahe javguru https://jav.guru/257046/731aege-0016/ https://javclan.com/e/pecu4gcu0afc https://jav.guru/searcho/?xr=706563753467637530616663   embed 2026-08-30 10:00:59 2026-08-30 10:00:59 javguru https://javclan.com/e/pecu4gcu0afc
1215 v_huahe javguru https://jav.guru/257046/731aege-0016/ https://tracylocalschool.com/e/bpiycxayimzx https://jav.guru/searcho/?tr=6270697963786179696d7a78   embed 2026-08-30 10:00:59 2026-08-30 10:00:59 javguru https://tracylocalschool.com/e/bpiycxayimzx
1216 v_huahe javguru https://jav.guru/257046/731aege-0016/ https://javplaya.com/embed/6aml8tfihrmq https://jav.guru/searcho/?rr=36616d6c3874666968726d71   embed 2026-08-30 10:00:59 2026-08-30 10:00:59 javguru https://javplaya.com/embed/6aml8tfihrmq
1217 v_huahe javguru https://jav.guru/257046/731aege-0016/ https://vide0.net/e/oqr5kbxnd0w3 https://jav.guru/searcho/?hr=6f7172356b62786e64307733   embed 2026-08-30 10:00:59 2026-08-30 10:00:59 javguru https://vide0.net/e/oqr5kbxnd0w3
1218 v_huahe javguru https://jav.guru/257046/731aege-0016/ https://maxstream.org/embed-t9a2z228jqcq.html https://jav.guru/searcho/?or=656d6265642d743961327a3232386a7163712e68746d6c   embed 2026-08-30 10:00:59 2026-08-30 10:00:59 javguru https://maxstream.org/embed-t9a2z228jqcq.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 5.439ms