home / media

streams

6 rows where v_uid = "v_qmhog"

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
449 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://javclan.com/e/0c6t2rcvzloz https://jav.guru/searcho/?xr=30633674327263767a6c6f7a   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://javclan.com/e/0c6t2rcvzloz
450 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://turbovidhls.com/t/68ee184635d0b https://jav.guru/searcho/?ur=36386565313834363335643062 https://cdn3.turboviplay.com/data3/68ee184635d0b/68ee184635d0b.m3u8 m3u8 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://turbovidhls.com/t/68ee184635d0b
451 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://tracylocalschool.com/e/me5yqds42bam https://jav.guru/searcho/?tr=6d653579716473343262616d   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://tracylocalschool.com/e/me5yqds42bam
452 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://streamhihi.com/e/bdotmvc3a5hn https://jav.guru/searcho/?er=652f62646f746d7663336135686e   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://streamhihi.com/e/bdotmvc3a5hn
453 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://vide0.net/e/zhwfbldnmsg3 https://jav.guru/searcho/?hr=7a687766626c646e6d736733   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://vide0.net/e/zhwfbldnmsg3
454 v_qmhog javguru https://jav.guru/788307/mmr-aa358-exposure-a-complete-behind-the-scenes-documentary/ https://maxstream.org/embed-kg1ax3e20c19.html https://jav.guru/searcho/?or=656d6265642d6b67316178336532306331392e68746d6c   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://maxstream.org/embed-kg1ax3e20c19.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 6.887ms