home / media

streams

6 rows where v_uid = "v_9p3f6"

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
173 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://javclan.com/e/vz2grxhfxrg8 https://jav.guru/searcho/?xr=767a32677278686678726738   embed 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://javclan.com/e/vz2grxhfxrg8
174 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://turbovidhls.com/t/68efa2396309d https://jav.guru/searcho/?ur=36386566613233393633303964 https://cdn3.turboviplay.com/data3/68efa2396309d/68efa2396309d.m3u8 m3u8 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://turbovidhls.com/t/68efa2396309d
175 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://tracylocalschool.com/e/uxxnwh5lnqvg https://jav.guru/searcho/?tr=7578786e7768356c6e717667   embed 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://tracylocalschool.com/e/uxxnwh5lnqvg
176 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://streamhihi.com/e/kfj067rueffk https://jav.guru/searcho/?er=652f6b666a30363772756566666b   embed 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://streamhihi.com/e/kfj067rueffk
177 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://vide0.net/e/0mweqbwpmy0y https://jav.guru/searcho/?hr=306d7765716277706d793079   embed 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://vide0.net/e/0mweqbwpmy0y
178 v_9p3f6 javguru https://jav.guru/789617/mbr-aa303-have-we-come-this-far-since-the-debut-inose-hitomi/ https://maxstream.org/embed-7x0rfx6mc32v.html https://jav.guru/searcho/?or=656d6265642d377830726678366d633332762e68746d6c   embed 2026-08-30 09:16:39 2026-08-30 09:16:39 javguru https://maxstream.org/embed-7x0rfx6mc32v.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.936ms