home / media

streams

4 rows where v_uid = "v_fggmo"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1227 v_fggmo javguru https://jav.guru/224259/oksn-315-i-who-defiled-the-nest-of/ https://javclan.com/e/8pq8yscjcqkh https://jav.guru/searcho/?xr=387071387973636a63716b68   embed 2026-08-30 10:01:06 2026-08-30 10:01:06 javguru https://javclan.com/e/8pq8yscjcqkh
1228 v_fggmo javguru https://jav.guru/224259/oksn-315-i-who-defiled-the-nest-of/ https://streamhihi.com/e/givsf0yan7pr https://jav.guru/searcho/?er=652f67697673663079616e377072   embed 2026-08-30 10:01:06 2026-08-30 10:01:06 javguru https://streamhihi.com/e/givsf0yan7pr
1229 v_fggmo javguru https://jav.guru/224259/oksn-315-i-who-defiled-the-nest-of/ https://vide0.net/e/ut8rjo2rbng5 https://jav.guru/searcho/?hr=757438726a6f3272626e6735   embed 2026-08-30 10:01:06 2026-08-30 10:01:06 javguru https://vide0.net/e/ut8rjo2rbng5
1230 v_fggmo javguru https://jav.guru/224259/oksn-315-i-who-defiled-the-nest-of/ https://maxstream.org/embed-6nh8fhozix9x.html https://jav.guru/searcho/?or=656d6265642d366e683866686f7a697839782e68746d6c   embed 2026-08-30 10:01:06 2026-08-30 10:01:06 javguru https://maxstream.org/embed-6nh8fhozix9x.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.599ms