home / media

streams

6 rows where v_uid = "v_p8p02"

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
479 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://javclan.com/e/wxuu8hezl0pf https://jav.guru/searcho/?xr=777875753868657a6c307066   embed 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://javclan.com/e/wxuu8hezl0pf
480 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://turbovidhls.com/t/68ee182e98427 https://jav.guru/searcho/?ur=36386565313832653938343237 https://cdn3.turboviplay.com/data3/68ee182e98427/68ee182e98427.m3u8 m3u8 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://turbovidhls.com/t/68ee182e98427
481 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://tracylocalschool.com/e/ljsagwtgj2uf https://jav.guru/searcho/?tr=6c6a7361677774676a327566   embed 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://tracylocalschool.com/e/ljsagwtgj2uf
482 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://streamhihi.com/e/cpxiwbmvww0f https://jav.guru/searcho/?er=652f6370786977626d7677773066   embed 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://streamhihi.com/e/cpxiwbmvww0f
483 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://vide0.net/e/4zi3f9jzsll7 https://jav.guru/searcho/?hr=347a693366396a7a736c6c37   embed 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://vide0.net/e/4zi3f9jzsll7
484 v_p8p02 javguru https://jav.guru/788308/mmr-aa340-pure-chronicle-shirahoshi-yuna/ https://maxstream.org/embed-2y516k78csgi.html https://jav.guru/searcho/?or=656d6265642d32793531366b3738637367692e68746d6c   embed 2026-08-30 09:54:29 2026-08-30 09:54:29 javguru https://maxstream.org/embed-2y516k78csgi.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.45ms