home / media

streams

6 rows where v_uid = "v_iexy6"

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
976 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://javclan.com/e/owqy35emaf2k https://jav.guru/searcho/?xr=6f7771793335656d6166326b   embed 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://javclan.com/e/owqy35emaf2k
977 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://turbovidhls.com/t/68ed42abcf5be https://jav.guru/searcho/?ur=36386564343261626366356265 https://cdn3.turboviplay.com/data3/68ed42abcf5be/68ed42abcf5be.m3u8 m3u8 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://turbovidhls.com/t/68ed42abcf5be
978 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://tracylocalschool.com/e/qfsrftpeu3ce https://jav.guru/searcho/?tr=716673726674706575336365   embed 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://tracylocalschool.com/e/qfsrftpeu3ce
979 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://streamhihi.com/e/xc2bbpp3qsz6 https://jav.guru/searcho/?er=652f786332626270703371737a36   embed 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://streamhihi.com/e/xc2bbpp3qsz6
980 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://vide0.net/e/7jysnuwodxqe https://jav.guru/searcho/?hr=376a79736e75776f64787165   embed 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://vide0.net/e/7jysnuwodxqe
981 v_iexy6 javguru https://jav.guru/787713/mbr-ba136-the-naked-beauty-kinoshita-ririko/ https://maxstream.org/embed-4tnuhtrqesz0.html https://jav.guru/searcho/?or=656d6265642d34746e756874727165737a302e68746d6c   embed 2026-08-30 09:58:55 2026-08-30 09:58:55 javguru https://maxstream.org/embed-4tnuhtrqesz0.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.653ms