home / media

streams

6 rows where v_uid = "v_ls70l"

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
933 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://javclan.com/e/s50os7wgn14g https://jav.guru/searcho/?xr=7335306f733777676e313467   embed 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://javclan.com/e/s50os7wgn14g
934 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://turbovidhls.com/t/68ed41a647ca5 https://jav.guru/searcho/?ur=36386564343161363437636135 https://cdn3.turboviplay.com/data3/68ed41a647ca5/68ed41a647ca5.m3u8 m3u8 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://turbovidhls.com/t/68ed41a647ca5
935 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://tracylocalschool.com/e/aakvk3gbvpnx https://jav.guru/searcho/?tr=61616b766b33676276706e78   embed 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://tracylocalschool.com/e/aakvk3gbvpnx
936 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://streamhihi.com/e/so2m74xef5hj https://jav.guru/searcho/?er=652f736f326d373478656635686a   embed 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://streamhihi.com/e/so2m74xef5hj
937 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://vide0.net/e/0ej95unevfl2 https://jav.guru/searcho/?hr=30656a3935756e6576666c32   embed 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://vide0.net/e/0ej95unevfl2
938 v_ls70l javguru https://jav.guru/787722/mbr-aq019-kanami-maeda-virgin-feelings/ https://maxstream.org/embed-1l0brl8z63bi.html https://jav.guru/searcho/?or=656d6265642d316c3062726c387a363362692e68746d6c   embed 2026-08-30 09:58:25 2026-08-30 09:58:25 javguru https://maxstream.org/embed-1l0brl8z63bi.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 5.186ms