home / media

streams

6 rows where v_uid = "v_sqpvt"

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
143 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://javclan.com/e/qd7zumdb8qoq https://jav.guru/searcho/?xr=7164377a756d646238716f71   embed 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://javclan.com/e/qd7zumdb8qoq
144 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://turbovidhls.com/t/68efa1009cfc2 https://jav.guru/searcho/?ur=36386566613130303963666332 https://cdn3.turboviplay.com/data3/68efa1009cfc2/68efa1009cfc2.m3u8 m3u8 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://turbovidhls.com/t/68efa1009cfc2
145 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://tracylocalschool.com/e/jk4myc0rgqqi https://jav.guru/searcho/?tr=6a6b346d7963307267717169   embed 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://tracylocalschool.com/e/jk4myc0rgqqi
146 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://streamhihi.com/e/p6g2mfp8420w https://jav.guru/searcho/?er=652f703667326d66703834323077   embed 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://streamhihi.com/e/p6g2mfp8420w
147 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://vide0.net/e/3t38g5j9zm9q https://jav.guru/searcho/?hr=3374333867356a397a6d3971   embed 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://vide0.net/e/3t38g5j9zm9q
148 v_sqpvt javguru https://jav.guru/789622/lcdv-41227-nao-usami-fruits-of-the-sun/ https://maxstream.org/embed-kh43svshevw4.html https://jav.guru/searcho/?or=656d6265642d6b68343373767368657677342e68746d6c   embed 2026-08-30 09:11:47 2026-08-30 09:11:47 javguru https://maxstream.org/embed-kh43svshevw4.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 4.9ms