home / media

streams

6 rows where v_uid = "v_lhvwh"

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
1091 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://javclan.com/e/6u8ot31k17t3 https://jav.guru/searcho/?xr=3675386f7433316b31377433   embed 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://javclan.com/e/6u8ot31k17t3
1092 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://turbovidhls.com/t/68ed3fc485722 https://jav.guru/searcho/?ur=36386564336663343835373232 https://cdn3.turboviplay.com/data3/68ed3fc485722/68ed3fc485722.m3u8 m3u8 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://turbovidhls.com/t/68ed3fc485722
1093 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://tracylocalschool.com/e/xhisdfmirctr https://jav.guru/searcho/?tr=7868697364666d6972637472   embed 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://tracylocalschool.com/e/xhisdfmirctr
1094 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://streamhihi.com/e/5iunjylkh73u https://jav.guru/searcho/?er=652f3569756e6a796c6b68373375   embed 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://streamhihi.com/e/5iunjylkh73u
1095 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://vide0.net/e/v9cc22tq04ge https://jav.guru/searcho/?hr=763963633232747130346765   embed 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://vide0.net/e/v9cc22tq04ge
1096 v_lhvwh javguru https://jav.guru/787734/lcdv-40914-mei-tanaka-angel-kiss/ https://maxstream.org/embed-ezy6tmkwbcpx.html https://jav.guru/searcho/?or=656d6265642d657a7936746d6b77626370782e68746d6c   embed 2026-08-30 10:00:03 2026-08-30 10:00:03 javguru https://maxstream.org/embed-ezy6tmkwbcpx.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 4.417ms