home / media

streams

5 rows where v_uid = "v_uwgka"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1542 v_uwgka javguru https://jav.guru/158759/soe-649-secret-affair-with-yuma/ https://javclan.com/e/2cipbuc1dlf1 https://jav.guru/searcho/?xr=3263697062756331646c6631   embed 2026-08-30 14:03:01 2026-08-30 14:03:01 javguru https://javclan.com/e/2cipbuc1dlf1
1543 v_uwgka javguru https://jav.guru/158759/soe-649-secret-affair-with-yuma/ https://tracylocalschool.com/e/d7ghln8fnvxz https://jav.guru/searcho/?tr=643767686c6e38666e76787a   embed 2026-08-30 14:03:01 2026-08-30 14:03:01 javguru https://tracylocalschool.com/e/d7ghln8fnvxz
1544 v_uwgka javguru https://jav.guru/158759/soe-649-secret-affair-with-yuma/ https://javplaya.com/embed/xmo1vt1sv665 https://jav.guru/searcho/?rr=786d6f317674317376363635   embed 2026-08-30 14:03:01 2026-08-30 14:03:01 javguru https://javplaya.com/embed/xmo1vt1sv665
1545 v_uwgka javguru https://jav.guru/158759/soe-649-secret-affair-with-yuma/ https://vide0.net/e/hmevnc91rymalrm46h8wb9303c18cx98 https://jav.guru/searcho/?hr=686d65766e63393172796d616c726d3436683877623933303363313863783938   embed 2026-08-30 14:03:01 2026-08-30 14:03:01 javguru https://vide0.net/e/hmevnc91rymalrm46h8wb9303c18cx98
1546 v_uwgka javguru https://jav.guru/158759/soe-649-secret-affair-with-yuma/ https://maxstream.org/embed-rhz2oq60r3hc.html https://jav.guru/searcho/?or=656d6265642d72687a326f713630723368632e68746d6c   embed 2026-08-30 14:03:01 2026-08-30 14:03:01 javguru https://maxstream.org/embed-rhz2oq60r3hc.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.087ms