home / media

streams

6 rows where v_uid = "v_bvmcl"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
443 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://javclan.com/e/e8ianjrg4cdj https://jav.guru/searcho/?xr=653869616e6a72673463646a   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://javclan.com/e/e8ianjrg4cdj
444 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://turbovidhls.com/t/68ee1760a23b0 https://jav.guru/searcho/?ur=36386565313736306132336230 https://cdn3.turboviplay.com/data3/68ee1760a23b0/68ee1760a23b0.m3u8 m3u8 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://turbovidhls.com/t/68ee1760a23b0
445 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://tracylocalschool.com/e/d2zvvpurc4gw https://jav.guru/searcho/?tr=64327a767670757263346777   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://tracylocalschool.com/e/d2zvvpurc4gw
446 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://streamhihi.com/e/p75tc75eqzbs https://jav.guru/searcho/?er=652f7037357463373565717a6273   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://streamhihi.com/e/p75tc75eqzbs
447 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://vide0.net/e/fn46dg1qyae0 https://jav.guru/searcho/?hr=666e34366467317179616530   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://vide0.net/e/fn46dg1qyae0
448 v_bvmcl javguru https://jav.guru/788310/mmr-aa188-pure-chronicle-midoka/ https://maxstream.org/embed-lhseq2ntt45h.html https://jav.guru/searcho/?or=656d6265642d6c68736571326e74743435682e68746d6c   embed 2026-08-30 09:54:13 2026-08-30 09:54:13 javguru https://maxstream.org/embed-lhseq2ntt45h.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.919ms