home / media

streams

6 rows where v_uid = "v_yh543"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
2122 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://javclan.com/e/1g672z5ycwzi https://jav.guru/searcho/?xr=31673637327a357963777a69   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://javclan.com/e/1g672z5ycwzi
2123 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://turbovidhls.com/t/68ea9746b6d4c https://jav.guru/searcho/?ur=36386561393734366236643463   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://turbovidhls.com/t/68ea9746b6d4c
2124 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://tracylocalschool.com/e/nf6cdala8isa https://jav.guru/searcho/?tr=6e66366364616c6138697361   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://tracylocalschool.com/e/nf6cdala8isa
2125 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://streamhihi.com/e/cwzkpzgsi9el https://jav.guru/searcho/?er=652f63777a6b707a67736939656c   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://streamhihi.com/e/cwzkpzgsi9el
2126 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://vide0.net/e/08cktb02n4ix https://jav.guru/searcho/?hr=3038636b746230326e346978   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://vide0.net/e/08cktb02n4ix
2127 v_yh543 javguru https://jav.guru/785304/hunta-815-after-a-drinking-party-with-friends-i-missed-the-last-train-and-stayed-at-my-best-friends-girlfriends-place/ https://maxstream.org/embed-e7m12sa1brm9.html https://jav.guru/searcho/?or=656d6265642d65376d313273613162726d392e68746d6c   embed 2026-08-30 14:08:13 2026-08-30 14:08:13 javguru https://maxstream.org/embed-e7m12sa1brm9.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 5.16ms