home / media

streams

6 rows where v_uid = "v_zup3h"

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
89 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://javclan.com/e/s6kq03m8cm5h https://jav.guru/searcho/?xr=73366b7130336d38636d3568   embed 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://javclan.com/e/s6kq03m8cm5h
90 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://turbovidhls.com/t/68efa3138452f https://jav.guru/searcho/?ur=36386566613331333834353266 https://cdn3.turboviplay.com/data3/68efa3138452f/68efa3138452f.m3u8 m3u8 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://turbovidhls.com/t/68efa3138452f
91 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://tracylocalschool.com/e/ssi5ley2sqkn https://jav.guru/searcho/?tr=737369356c65793273716b6e   embed 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://tracylocalschool.com/e/ssi5ley2sqkn
92 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://streamhihi.com/e/w3f077t7ejic https://jav.guru/searcho/?er=652f7733663037377437656a6963   embed 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://streamhihi.com/e/w3f077t7ejic
93 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://vide0.net/e/a6dhpcjoli0f https://jav.guru/searcho/?hr=6136646870636a6f6c693066   embed 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://vide0.net/e/a6dhpcjoli0f
94 v_zup3h javguru https://jav.guru/789606/nacr-265-what-if-yurikawa-sara-were-like-this/ https://maxstream.org/embed-hsdkwqb2qqm2.html https://jav.guru/searcho/?or=656d6265642d6873646b7771623271716d322e68746d6c   embed 2026-08-30 09:09:18 2026-08-30 09:09:18 javguru https://maxstream.org/embed-hsdkwqb2qqm2.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 2.901ms