home / media

streams

5 rows where v_uid = "v_1doaq"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
4229 v_1doaq javguru https://jav.guru/792546/tsds-42802-shirahama-sachi-ive-become-a-good-boy/ https://javclan.com/e/07m7qpz5rzww https://jav.guru/searcho/?xr=30376d3771707a35727a7777   embed 2026-08-30 14:27:25 2026-08-30 14:27:25 javguru https://javclan.com/e/07m7qpz5rzww
4230 v_1doaq javguru https://jav.guru/792546/tsds-42802-shirahama-sachi-ive-become-a-good-boy/ https://turbovidhls.com/t/68f698b39a244 https://jav.guru/searcho/?ur=36386636393862333961323434   embed 2026-08-30 14:27:25 2026-08-30 14:27:25 javguru https://turbovidhls.com/t/68f698b39a244
4231 v_1doaq javguru https://jav.guru/792546/tsds-42802-shirahama-sachi-ive-become-a-good-boy/ https://tracylocalschool.com/e/ematcmjbfhmw https://jav.guru/searcho/?tr=656d6174636d6a6266686d77   embed 2026-08-30 14:27:25 2026-08-30 14:27:25 javguru https://tracylocalschool.com/e/ematcmjbfhmw
4232 v_1doaq javguru https://jav.guru/792546/tsds-42802-shirahama-sachi-ive-become-a-good-boy/ https://streamhihi.com/e/vwwdnt21v2zf https://jav.guru/searcho/?er=652f767777646e74323176327a66   embed 2026-08-30 14:27:25 2026-08-30 14:27:25 javguru https://streamhihi.com/e/vwwdnt21v2zf
4233 v_1doaq javguru https://jav.guru/792546/tsds-42802-shirahama-sachi-ive-become-a-good-boy/ https://maxstream.org/embed-qvyhqpni4gsi.html https://jav.guru/searcho/?or=656d6265642d7176796871706e69346773692e68746d6c   embed 2026-08-30 14:27:25 2026-08-30 14:27:25 javguru https://maxstream.org/embed-qvyhqpni4gsi.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.849ms