home / media

streams

6 rows where v_uid = "v_ja25x"

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
1109 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://javclan.com/e/dnepfqjitxi5 https://jav.guru/searcho/?xr=646e657066716a6974786935   embed 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://javclan.com/e/dnepfqjitxi5
1110 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://turbovidhls.com/t/68ed40cc30c7c https://jav.guru/searcho/?ur=36386564343063633330633763 https://cdn3.turboviplay.com/data3/68ed40cc30c7c/68ed40cc30c7c.m3u8 m3u8 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://turbovidhls.com/t/68ed40cc30c7c
1111 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://tracylocalschool.com/e/zixudiekoo36 https://jav.guru/searcho/?tr=7a6978756469656b6f6f3336   embed 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://tracylocalschool.com/e/zixudiekoo36
1112 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://streamhihi.com/e/ovu1q0eu1j26 https://jav.guru/searcho/?er=652f6f76753171306575316a3236   embed 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://streamhihi.com/e/ovu1q0eu1j26
1113 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://vide0.net/e/yfsqn2iewdcu https://jav.guru/searcho/?hr=796673716e32696577646375   embed 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://vide0.net/e/yfsqn2iewdcu
1114 v_ja25x javguru https://jav.guru/787730/mbr-aa320-sonoka-misaki-see-through-love/ https://maxstream.org/embed-tpqa44r1bb6h.html https://jav.guru/searcho/?or=656d6265642d7470716134347231626236682e68746d6c   embed 2026-08-30 10:00:11 2026-08-30 10:00:11 javguru https://maxstream.org/embed-tpqa44r1bb6h.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.14ms