home / media

streams

5 rows where v_uid = "v_siuxf"

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
1006 v_siuxf javguru https://jav.guru/416147/pbd-475-yamagishis-mouth-feels-too-good-im-losing-it-yamagishi-aikas-110/ https://javclan.com/e/4qtw4ynq0fbc https://jav.guru/searcho/?xr=3471747734796e7130666263   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://javclan.com/e/4qtw4ynq0fbc
1007 v_siuxf javguru https://jav.guru/416147/pbd-475-yamagishis-mouth-feels-too-good-im-losing-it-yamagishi-aikas-110/ https://turbovidhls.com/t/66e43a047f8a7 https://jav.guru/searcho/?ur=36366534336130343766386137 https://cdn3.turboviplay.com/data/66e43a047f8a7/66e43a047f8a7.m3u8 m3u8 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://turbovidhls.com/t/66e43a047f8a7
1008 v_siuxf javguru https://jav.guru/416147/pbd-475-yamagishis-mouth-feels-too-good-im-losing-it-yamagishi-aikas-110/ https://streamhihi.com/e/fhw3i5y5mww4 https://jav.guru/searcho/?er=652f66687733693579356d777734   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://streamhihi.com/e/fhw3i5y5mww4
1009 v_siuxf javguru https://jav.guru/416147/pbd-475-yamagishis-mouth-feels-too-good-im-losing-it-yamagishi-aikas-110/ https://vide0.net/e/tbx3dgmr6v86 https://jav.guru/searcho/?hr=7462783364676d7236763836   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://vide0.net/e/tbx3dgmr6v86
1010 v_siuxf javguru https://jav.guru/416147/pbd-475-yamagishis-mouth-feels-too-good-im-losing-it-yamagishi-aikas-110/ https://maxstream.org/embed-3okm9v030xwy.html https://jav.guru/searcho/?or=656d6265642d336f6b6d39763033307877792e68746d6c   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://maxstream.org/embed-3okm9v030xwy.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.732ms