home / media

streams

4 rows where v_uid = "v_smho9"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1016 v_smho9 javguru https://jav.guru/257032/731aege-0031/ https://javclan.com/e/uys07csyyc1h https://jav.guru/searcho/?xr=757973303763737979633168   embed 2026-08-30 09:59:20 2026-08-30 09:59:20 javguru https://javclan.com/e/uys07csyyc1h
1017 v_smho9 javguru https://jav.guru/257032/731aege-0031/ https://tracylocalschool.com/e/lwivxkodmaub https://jav.guru/searcho/?tr=6c776976786b6f646d617562   embed 2026-08-30 09:59:20 2026-08-30 09:59:20 javguru https://tracylocalschool.com/e/lwivxkodmaub
1018 v_smho9 javguru https://jav.guru/257032/731aege-0031/ https://vide0.net/e/scylyrdnmoep https://jav.guru/searcho/?hr=7363796c7972646e6d6f6570   embed 2026-08-30 09:59:20 2026-08-30 09:59:20 javguru https://vide0.net/e/scylyrdnmoep
1019 v_smho9 javguru https://jav.guru/257032/731aege-0031/ https://maxstream.org/embed-rd5sc5g3u0w4.html https://jav.guru/searcho/?or=656d6265642d7264357363356733753077342e68746d6c   embed 2026-08-30 09:59:20 2026-08-30 09:59:20 javguru https://maxstream.org/embed-rd5sc5g3u0w4.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.429ms