home / media

streams

6 rows where v_uid = "v_tlqvb"

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
890 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://javclan.com/e/14l20om7w2q3 https://jav.guru/searcho/?xr=31346c32306f6d3777327133   embed 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://javclan.com/e/14l20om7w2q3
891 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://turbovidhls.com/t/68ed44f3b9d6c https://jav.guru/searcho/?ur=36386564343466336239643663 https://cdn3.turboviplay.com/data3/68ed2e9db5b04/68ed2e9db5b04.m3u8 m3u8 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://turbovidhls.com/t/68ed44f3b9d6c
892 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://tracylocalschool.com/e/ytrrhewp31yd https://jav.guru/searcho/?tr=797472726865777033317964   embed 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://tracylocalschool.com/e/ytrrhewp31yd
893 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://streamhihi.com/e/0zls5bc4wpdu https://jav.guru/searcho/?er=652f307a6c733562633477706475   embed 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://streamhihi.com/e/0zls5bc4wpdu
894 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://vide0.net/e/rox07recyb19 https://jav.guru/searcho/?hr=726f78303772656379623139   embed 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://vide0.net/e/rox07recyb19
895 v_tlqvb javguru https://jav.guru/787702/start-421-aim-for-the-top-in-japan-with-modified-tentacles-tentacle-grand-prix-featuring-ogura-yuna/ https://maxstream.org/embed-wjeb6i1r87nh.html https://jav.guru/searcho/?or=656d6265642d776a65623669317238376e682e68746d6c   embed 2026-08-30 09:57:56 2026-08-30 09:57:56 javguru https://maxstream.org/embed-wjeb6i1r87nh.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.8ms