home / media

streams

6 rows where v_uid = "v_gh5fe"

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
964 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://javclan.com/e/c5g6qv66m2zk https://jav.guru/searcho/?xr=63356736717636366d327a6b   embed 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://javclan.com/e/c5g6qv66m2zk
965 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://turbovidhls.com/t/68ed3f0cbebf8 https://jav.guru/searcho/?ur=36386564336630636265626638 https://cdn3.turboviplay.com/data3/68ed3f0cbebf8/68ed3f0cbebf8.m3u8 m3u8 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://turbovidhls.com/t/68ed3f0cbebf8
966 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://tracylocalschool.com/e/ejtaq3twjhei https://jav.guru/searcho/?tr=656a7461713374776a686569   embed 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://tracylocalschool.com/e/ejtaq3twjhei
967 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://streamhihi.com/e/3daaxbyq6gtd https://jav.guru/searcho/?er=652f336461617862797136677464   embed 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://streamhihi.com/e/3daaxbyq6gtd
968 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://vide0.net/e/qtxd2mebw0ra https://jav.guru/searcho/?hr=71747864326d656277307261   embed 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://vide0.net/e/qtxd2mebw0ra
969 v_gh5fe javguru https://jav.guru/787747/higr-080-temptation-at-the-hot-springs-asakura-marina/ https://maxstream.org/embed-7p67dg5v6icx.html https://jav.guru/searcho/?or=656d6265642d3770363764673576366963782e68746d6c   embed 2026-08-30 09:58:45 2026-08-30 09:58:45 javguru https://maxstream.org/embed-7p67dg5v6icx.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.893ms