home / media

streams

6 rows where v_uid = "v_b1luw"

This data as json, CSV (advanced)

Suggested facets: addedAt (date), updatedAt (date)

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1785 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://javclan.com/e/vgbu4vfpkid3 https://jav.guru/searcho/?xr=76676275347666706b696433   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://javclan.com/e/vgbu4vfpkid3
1786 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://turbovidhls.com/t/68e7dfd0b178d https://jav.guru/searcho/?ur=36386537646664306231373864   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://turbovidhls.com/t/68e7dfd0b178d
1787 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://tracylocalschool.com/e/xwlenohle1lt https://jav.guru/searcho/?tr=78776c656e6f686c65316c74   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://tracylocalschool.com/e/xwlenohle1lt
1788 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://streamhihi.com/e/sha3xbb5aqwt https://jav.guru/searcho/?er=652f736861337862623561717774   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://streamhihi.com/e/sha3xbb5aqwt
1789 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://vide0.net/e/800c62t8pnjd https://jav.guru/searcho/?hr=3830306336327438706e6a64   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://vide0.net/e/800c62t8pnjd
1790 v_b1luw javguru https://jav.guru/783634/tkv-02-heroine-body-blow-2/ https://maxstream.org/embed-5avckaewz2ow.html https://jav.guru/searcho/?or=656d6265642d356176636b6165777a326f772e68746d6c   embed 2026-08-30 14:05:12 2026-08-30 14:05:12 javguru https://maxstream.org/embed-5avckaewz2ow.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.309ms