home / media

streams

6 rows where v_uid = "v_o34ej"

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
1031 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://javclan.com/e/clq88nm624pu https://jav.guru/searcho/?xr=636c7138386e6d3632347075   embed 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://javclan.com/e/clq88nm624pu
1032 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://turbovidhls.com/t/68ed3ef5cf19a https://jav.guru/searcho/?ur=36386564336566356366313961 https://cdn3.turboviplay.com/data3/68ed3ef5cf19a/68ed3ef5cf19a.m3u8 m3u8 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://turbovidhls.com/t/68ed3ef5cf19a
1033 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://tracylocalschool.com/e/6gj5irerpoz7 https://jav.guru/searcho/?tr=36676a3569726572706f7a37   embed 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://tracylocalschool.com/e/6gj5irerpoz7
1034 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://streamhihi.com/e/zmvb9rdsbsk9 https://jav.guru/searcho/?er=652f7a6d76623972647362736b39   embed 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://streamhihi.com/e/zmvb9rdsbsk9
1035 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://vide0.net/e/57479uey82qk https://jav.guru/searcho/?hr=35373437397565793832716b   embed 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://vide0.net/e/57479uey82qk
1036 v_o34ej javguru https://jav.guru/787744/lcbd-00576-rui-kiriyama-overflow-i/ https://maxstream.org/embed-771esekt6k17.html https://jav.guru/searcho/?or=656d6265642d3737316573656b74366b31372e68746d6c   embed 2026-08-30 09:59:32 2026-08-30 09:59:32 javguru https://maxstream.org/embed-771esekt6k17.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.078ms