home / media

streams

6 rows where v_uid = "v_ggptm"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1809 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://javclan.com/e/fy23ba2kbomt https://jav.guru/searcho/?xr=667932336261326b626f6d74   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://javclan.com/e/fy23ba2kbomt
1810 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://turbovidhls.com/t/68ec08f2b8c9a https://jav.guru/searcho/?ur=36386563303866326238633961   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://turbovidhls.com/t/68ec08f2b8c9a
1811 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://tracylocalschool.com/e/vl56ydnffrml https://jav.guru/searcho/?tr=766c353679646e6666726d6c   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://tracylocalschool.com/e/vl56ydnffrml
1812 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://streamhihi.com/e/8pthawm2075o https://jav.guru/searcho/?er=652f3870746861776d323037356f   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://streamhihi.com/e/8pthawm2075o
1813 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://vide0.net/e/utrh7hi8izs6 https://jav.guru/searcho/?hr=7574726837686938697a7336   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://vide0.net/e/utrh7hi8izs6
1814 v_ggptm javguru https://jav.guru/785437/nnsbd-021-nene-and-yuri-tanaka-nene/ https://maxstream.org/embed-f5ep3yitci2x.html https://jav.guru/searcho/?or=656d6265642d6635657033796974636932782e68746d6c   embed 2026-08-30 14:05:27 2026-08-30 14:05:27 javguru https://maxstream.org/embed-f5ep3yitci2x.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.625ms