home / media

streams

6 rows where v_uid = "v_445rf"

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
1200 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://javclan.com/e/0iy4wysp7gj4 https://jav.guru/searcho/?xr=306979347779737037676a34   embed 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://javclan.com/e/0iy4wysp7gj4
1201 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://turbovidhls.com/t/68ed432551888 https://jav.guru/searcho/?ur=36386564343332353531383838 https://cdn3.turboviplay.com/data3/68ed432551888/68ed432551888.m3u8 m3u8 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://turbovidhls.com/t/68ed432551888
1202 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://tracylocalschool.com/e/v7gxd7tyxqeq https://jav.guru/searcho/?tr=763767786437747978716571   embed 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://tracylocalschool.com/e/v7gxd7tyxqeq
1203 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://streamhihi.com/e/zgbvdt9jdggu https://jav.guru/searcho/?er=652f7a6762766474396a64676775   embed 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://streamhihi.com/e/zgbvdt9jdggu
1204 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://vide0.net/e/rcjzs7mxas21 https://jav.guru/searcho/?hr=72636a7a73376d7861733231   embed 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://vide0.net/e/rcjzs7mxas21
1205 v_445rf javguru https://jav.guru/787720/mbr-az065-fuwari-mashiro-fluffy/ https://maxstream.org/embed-qd5h7rpj9a6h.html https://jav.guru/searcho/?or=656d6265642d716435683772706a396136682e68746d6c   embed 2026-08-30 10:00:53 2026-08-30 10:00:53 javguru https://maxstream.org/embed-qd5h7rpj9a6h.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.375ms