home / media

streams

4 rows where v_uid = "v_2z0v2"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1319 v_2z0v2 javguru https://jav.guru/384117/midv-718-the-plain-and-lonely-classmate-turns-out-to-be-a-popular-busty-obscene-cosplayer-who-livestreams-once-a-month-miura/ https://javclan.com/e/euwyomp9mpi2 https://jav.guru/searcho/?xr=657577796f6d70396d706932   embed 2026-08-30 10:02:00 2026-08-30 10:02:00 javguru https://javclan.com/e/euwyomp9mpi2
1320 v_2z0v2 javguru https://jav.guru/384117/midv-718-the-plain-and-lonely-classmate-turns-out-to-be-a-popular-busty-obscene-cosplayer-who-livestreams-once-a-month-miura/ https://oppainet.net/embed/qRPSAB0rMU4tflA https://jav.guru/searcho/?gr=71525053414230724d553474666c41   embed 2026-08-30 10:02:00 2026-08-30 10:02:00 javguru https://oppainet.net/embed/qRPSAB0rMU4tflA
1321 v_2z0v2 javguru https://jav.guru/384117/midv-718-the-plain-and-lonely-classmate-turns-out-to-be-a-popular-busty-obscene-cosplayer-who-livestreams-once-a-month-miura/ https://vide0.net/e/6e9i1i3r5zwo https://jav.guru/searcho/?hr=3665396931693372357a776f   embed 2026-08-30 10:02:00 2026-08-30 10:02:00 javguru https://vide0.net/e/6e9i1i3r5zwo
1322 v_2z0v2 javguru https://jav.guru/384117/midv-718-the-plain-and-lonely-classmate-turns-out-to-be-a-popular-busty-obscene-cosplayer-who-livestreams-once-a-month-miura/ https://maxstream.org/embed-fv8z1eqo92i9.html https://jav.guru/searcho/?or=656d6265642d6676387a3165716f393269392e68746d6c   embed 2026-08-30 10:02:00 2026-08-30 10:02:00 javguru https://maxstream.org/embed-fv8z1eqo92i9.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.963ms