home / media

streams

6 rows where v_uid = "v_ynhnm"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1630 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://javclan.com/e/t2qke5rex7xw https://jav.guru/searcho/?xr=7432716b6535726578377877   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://javclan.com/e/t2qke5rex7xw
1631 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://turbovidhls.com/t/68ebfe2a447f0 https://jav.guru/searcho/?ur=36386562666532613434376630   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://turbovidhls.com/t/68ebfe2a447f0
1632 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://tracylocalschool.com/e/e6ee37lohtfu https://jav.guru/searcho/?tr=6536656533376c6f68746675   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://tracylocalschool.com/e/e6ee37lohtfu
1633 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://streamhihi.com/e/58tpzcwszbcj https://jav.guru/searcho/?er=652f353874707a6377737a62636a   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://streamhihi.com/e/58tpzcwszbcj
1634 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://vide0.net/e/o6c4cqoappor https://jav.guru/searcho/?hr=6f36633463716f6170706f72   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://vide0.net/e/o6c4cqoappor
1635 v_ynhnm javguru https://jav.guru/785477/mbr-aa319-love-vibration-tsukimi-rui/ https://maxstream.org/embed-tkzl464dvjth.html https://jav.guru/searcho/?or=656d6265642d746b7a6c34363464766a74682e68746d6c   embed 2026-08-30 14:03:52 2026-08-30 14:03:52 javguru https://maxstream.org/embed-tkzl464dvjth.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.755ms