home / media

streams

6 rows where v_uid = "v_fwfrk"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1660 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://javclan.com/e/h7y820mp9f8q https://jav.guru/searcho/?xr=6837793832306d7039663871   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://javclan.com/e/h7y820mp9f8q
1661 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://turbovidhls.com/t/68ec10fb46bc9 https://jav.guru/searcho/?ur=36386563313066623436626339   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://turbovidhls.com/t/68ec10fb46bc9
1662 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://tracylocalschool.com/e/bvn7evy34yxx https://jav.guru/searcho/?tr=62766e376576793334797878   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://tracylocalschool.com/e/bvn7evy34yxx
1663 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://streamhihi.com/e/cdoimu9kgn6n https://jav.guru/searcho/?er=652f63646f696d75396b676e366e   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://streamhihi.com/e/cdoimu9kgn6n
1664 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://vide0.net/e/7u41qwotzaxl https://jav.guru/searcho/?hr=3775343171776f747a61786c   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://vide0.net/e/7u41qwotzaxl
1665 v_fwfrk javguru https://jav.guru/785408/sbvd-0566-open-heart-with-kanematsu-kiho/ https://maxstream.org/embed-krje7vnci0mm.html https://jav.guru/searcho/?or=656d6265642d6b726a6537766e6369306d6d2e68746d6c   embed 2026-08-30 14:04:12 2026-08-30 14:04:12 javguru https://maxstream.org/embed-krje7vnci0mm.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.224ms