home / media

streams

6 rows where v_uid = "v_xcbfp"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
2295 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://javclan.com/e/zm0isrrsg9dw https://jav.guru/searcho/?xr=7a6d30697372727367396477   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://javclan.com/e/zm0isrrsg9dw
2296 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://turbovidhls.com/t/68ea94e020a15 https://jav.guru/searcho/?ur=36386561393465303230613135   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://turbovidhls.com/t/68ea94e020a15
2297 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://tracylocalschool.com/e/bz0od1cfu2b0 https://jav.guru/searcho/?tr=627a306f6431636675326230   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://tracylocalschool.com/e/bz0od1cfu2b0
2298 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://streamhihi.com/e/hatzk4x1z5ud https://jav.guru/searcho/?er=652f6861747a6b3478317a357564   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://streamhihi.com/e/hatzk4x1z5ud
2299 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://vide0.net/e/izckh9lszbqo https://jav.guru/searcho/?hr=697a636b68396c737a62716f   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://vide0.net/e/izckh9lszbqo
2300 v_xcbfp javguru https://jav.guru/785308/honb-447-demand-exceeds-supply-3/ https://maxstream.org/embed-mmprvnmb0pm4.html https://jav.guru/searcho/?or=656d6265642d6d6d7072766e6d6230706d342e68746d6c   embed 2026-08-30 14:09:33 2026-08-30 14:09:33 javguru https://maxstream.org/embed-mmprvnmb0pm4.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.928ms