home / media

streams

6 rows where v_uid = "v_txqwc"

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
1097 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://javclan.com/e/3j9mwurgoik9 https://jav.guru/searcho/?xr=336a396d777572676f696b39   embed 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://javclan.com/e/3j9mwurgoik9
1098 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://turbovidhls.com/t/68ed4395b59de https://jav.guru/searcho/?ur=36386564343339356235396465 https://cdn3.turboviplay.com/data3/68ed4395b59de/68ed4395b59de.m3u8 m3u8 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://turbovidhls.com/t/68ed4395b59de
1099 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://tracylocalschool.com/e/kfrg7tjgek0n https://jav.guru/searcho/?tr=6b66726737746a67656b306e   embed 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://tracylocalschool.com/e/kfrg7tjgek0n
1100 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://streamhihi.com/e/yt4ugsmwb4oq https://jav.guru/searcho/?er=652f7974347567736d7762346f71   embed 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://streamhihi.com/e/yt4ugsmwb4oq
1101 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://vide0.net/e/1pbr2xjo97l9 https://jav.guru/searcho/?hr=3170627232786a6f39376c39   embed 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://vide0.net/e/1pbr2xjo97l9
1102 v_txqwc javguru https://jav.guru/787712/mbr-bi010-beautiful-goddess-mikami-moe/ https://maxstream.org/embed-8l3vil4x9u8i.html https://jav.guru/searcho/?or=656d6265642d386c3376696c3478397538692e68746d6c   embed 2026-08-30 10:00:07 2026-08-30 10:00:07 javguru https://maxstream.org/embed-8l3vil4x9u8i.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.245ms