home / media

streams

6 rows where v_uid = "v_p8yhg"

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
1181 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://javclan.com/e/ewsfq6aw06ag https://jav.guru/searcho/?xr=657773667136617730366167   embed 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://javclan.com/e/ewsfq6aw06ag
1182 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://turbovidhls.com/t/68ed436516602 https://jav.guru/searcho/?ur=36386564343336353136363032 https://cdn3.turboviplay.com/data3/68ed436516602/68ed436516602.m3u8 m3u8 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://turbovidhls.com/t/68ed436516602
1183 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://tracylocalschool.com/e/pdnspabsw6dd https://jav.guru/searcho/?tr=70646e737061627377366464   embed 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://tracylocalschool.com/e/pdnspabsw6dd
1184 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://streamhihi.com/e/b4vvohesbvqm https://jav.guru/searcho/?er=652f623476766f6865736276716d   embed 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://streamhihi.com/e/b4vvohesbvqm
1185 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://vide0.net/e/qrvje7yez8c0 https://jav.guru/searcho/?hr=7172766a653779657a386330   embed 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://vide0.net/e/qrvje7yez8c0
1186 v_p8yhg javguru https://jav.guru/787710/mmr-aa360-desire-switch-suzune-neko/ https://maxstream.org/embed-w7fomz8fp65l.html https://jav.guru/searcho/?or=656d6265642d7737666f6d7a38667036356c2e68746d6c   embed 2026-08-30 10:00:44 2026-08-30 10:00:44 javguru https://maxstream.org/embed-w7fomz8fp65l.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.125ms