home / media

streams

4 rows where v_uid = "v_3j3xm"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1490 v_3j3xm javguru https://jav.guru/177506/ss-052-secret-love-karen-asahina/ https://javclan.com/e/dsn2ji1bvzyp https://jav.guru/searcho/?xr=64736e326a693162767a7970   embed 2026-08-30 14:02:30 2026-08-30 14:02:30 javguru https://javclan.com/e/dsn2ji1bvzyp
1491 v_3j3xm javguru https://jav.guru/177506/ss-052-secret-love-karen-asahina/ https://tracylocalschool.com/e/ef3cx1lwxyge https://jav.guru/searcho/?tr=6566336378316c7778796765   embed 2026-08-30 14:02:30 2026-08-30 14:02:30 javguru https://tracylocalschool.com/e/ef3cx1lwxyge
1492 v_3j3xm javguru https://jav.guru/177506/ss-052-secret-love-karen-asahina/ https://vide0.net/e/2zdhtt9cg5avafv4wt3ny4m6sndfw318 https://jav.guru/searcho/?hr=327a64687474396367356176616676347774336e79346d36736e646677333138   embed 2026-08-30 14:02:30 2026-08-30 14:02:30 javguru https://vide0.net/e/2zdhtt9cg5avafv4wt3ny4m6sndfw318
1493 v_3j3xm javguru https://jav.guru/177506/ss-052-secret-love-karen-asahina/ https://maxstream.org/embed-jxpt75bfdl4j.html https://jav.guru/searcho/?or=656d6265642d6a78707437356266646c346a2e68746d6c   embed 2026-08-30 14:02:30 2026-08-30 14:02:30 javguru https://maxstream.org/embed-jxpt75bfdl4j.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.471ms