home / media

streams

6 rows where v_uid = "v_g2jc3"

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
1025 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://javclan.com/e/4la65862n0g2 https://jav.guru/searcho/?xr=346c6136353836326e306732   embed 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://javclan.com/e/4la65862n0g2
1026 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://turbovidhls.com/t/68ed3edc155ed https://jav.guru/searcho/?ur=36386564336564633135356564 https://cdn3.turboviplay.com/data3/68ed3edc155ed/68ed3edc155ed.m3u8 m3u8 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://turbovidhls.com/t/68ed3edc155ed
1027 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://tracylocalschool.com/e/ungj43xxagcv https://jav.guru/searcho/?tr=756e676a3433787861676376   embed 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://tracylocalschool.com/e/ungj43xxagcv
1028 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://streamhihi.com/e/gacw2vxqkz8l https://jav.guru/searcho/?er=652f67616377327678716b7a386c   embed 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://streamhihi.com/e/gacw2vxqkz8l
1029 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://vide0.net/e/t5polpd6fewc https://jav.guru/searcho/?hr=7435706f6c70643666657763   embed 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://vide0.net/e/t5polpd6fewc
1030 v_g2jc3 javguru https://jav.guru/787741/lcbd-00696-yuka-kuramochi-momojiri-kanojo-2/ https://maxstream.org/embed-vh5kixhhh38v.html https://jav.guru/searcho/?or=656d6265642d7668356b69786868683338762e68746d6c   embed 2026-08-30 09:59:27 2026-08-30 09:59:27 javguru https://maxstream.org/embed-vh5kixhhh38v.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.58ms