home / media

streams

4 rows where v_uid = "v_0lowi"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
8861 v_0lowi javguru https://jav.guru/385550/juq-738-20-years-have-passed-without-letting-go-of-my-sons-weaning-matsumoto/ https://javclan.com/e/9be7i8g2l2o6 https://jav.guru/searcho/?xr=39626537693867326c326f36   embed 2026-08-30 16:51:32 2026-08-30 16:51:32 javguru https://javclan.com/e/9be7i8g2l2o6
8862 v_0lowi javguru https://jav.guru/385550/juq-738-20-years-have-passed-without-letting-go-of-my-sons-weaning-matsumoto/ https://oppainet.net/embed/VDQCXeVXi7Wbnig https://jav.guru/searcho/?gr=5644514358655658693757626e6967   embed 2026-08-30 16:51:32 2026-08-30 16:51:32 javguru https://oppainet.net/embed/VDQCXeVXi7Wbnig
8863 v_0lowi javguru https://jav.guru/385550/juq-738-20-years-have-passed-without-letting-go-of-my-sons-weaning-matsumoto/ https://vide0.net/e/yq5rfu01hot7 https://jav.guru/searcho/?hr=7971357266753031686f7437   embed 2026-08-30 16:51:32 2026-08-30 16:51:32 javguru https://vide0.net/e/yq5rfu01hot7
8864 v_0lowi javguru https://jav.guru/385550/juq-738-20-years-have-passed-without-letting-go-of-my-sons-weaning-matsumoto/ https://maxstream.org/embed-3upthpio1u7o.html https://jav.guru/searcho/?or=656d6265642d337570746870696f3175376f2e68746d6c   embed 2026-08-30 16:51:32 2026-08-30 16:51:32 javguru https://maxstream.org/embed-3upthpio1u7o.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.14ms