home / media

streams

4 rows where v_uid = "v_0zar8"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
6753 v_0zar8 javguru https://jav.guru/390865/rctd-597-ignoring-your-presence-the-unnoticed-office/ https://javclan.com/e/5jtt8jt7spwm https://jav.guru/searcho/?xr=356a7474386a74377370776d   embed 2026-08-30 14:53:33 2026-08-30 14:53:33 javguru https://javclan.com/e/5jtt8jt7spwm
6754 v_0zar8 javguru https://jav.guru/390865/rctd-597-ignoring-your-presence-the-unnoticed-office/ https://oppainet.net/embed/tu2sMYyFgfYwt0y https://jav.guru/searcho/?gr=747532734d59794667665977743079   embed 2026-08-30 14:53:33 2026-08-30 14:53:33 javguru https://oppainet.net/embed/tu2sMYyFgfYwt0y
6755 v_0zar8 javguru https://jav.guru/390865/rctd-597-ignoring-your-presence-the-unnoticed-office/ https://vide0.net/e/5p1ton9tggg6 https://jav.guru/searcho/?hr=357031746f6e397467676736   embed 2026-08-30 14:53:33 2026-08-30 14:53:33 javguru https://vide0.net/e/5p1ton9tggg6
6756 v_0zar8 javguru https://jav.guru/390865/rctd-597-ignoring-your-presence-the-unnoticed-office/ https://maxstream.org/embed-zxeiqercdqsh.html https://jav.guru/searcho/?or=656d6265642d7a78656971657263647173682e68746d6c   embed 2026-08-30 14:53:33 2026-08-30 14:53:33 javguru https://maxstream.org/embed-zxeiqercdqsh.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.347ms