home / media

streams

6 rows where v_uid = "v_qv04b"

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
994 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://javclan.com/e/tn7zl26sah74 https://jav.guru/searcho/?xr=746e377a6c32367361683734   embed 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://javclan.com/e/tn7zl26sah74
995 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://turbovidhls.com/t/68ed416b32a4d https://jav.guru/searcho/?ur=36386564343136623332613464 https://cdn3.turboviplay.com/data3/68ed416b32a4d/68ed416b32a4d.m3u8 m3u8 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://turbovidhls.com/t/68ed416b32a4d
996 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://tracylocalschool.com/e/qytqeirrwgfb https://jav.guru/searcho/?tr=717974716569727277676662   embed 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://tracylocalschool.com/e/qytqeirrwgfb
997 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://streamhihi.com/e/ij02xp9dve9z https://jav.guru/searcho/?er=652f696a3032787039647665397a   embed 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://streamhihi.com/e/ij02xp9dve9z
998 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://vide0.net/e/vb3x3y3y0b9c https://jav.guru/searcho/?hr=766233783379337930623963   embed 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://vide0.net/e/vb3x3y3y0b9c
999 v_qv04b javguru https://jav.guru/787725/mbr-ab038-hoshimiya-ichika-nudie/ https://maxstream.org/embed-l4us9ep36j7r.html https://jav.guru/searcho/?or=656d6265642d6c34757339657033366a37722e68746d6c   embed 2026-08-30 09:59:07 2026-08-30 09:59:07 javguru https://maxstream.org/embed-l4us9ep36j7r.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.972ms