home / media

streams

6 rows where v_uid = "v_iccmw"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1401 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://javclan.com/e/shh62m08o1hw https://jav.guru/searcho/?xr=73686836326d30386f316877   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://javclan.com/e/shh62m08o1hw
1402 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://turbovidhls.com/t/68ebfd0d3c4ba https://jav.guru/searcho/?ur=36386562666430643363346261   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://turbovidhls.com/t/68ebfd0d3c4ba
1403 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://tracylocalschool.com/e/pa6t7sfzre0f https://jav.guru/searcho/?tr=706136743773667a72653066   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://tracylocalschool.com/e/pa6t7sfzre0f
1404 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://streamhihi.com/e/jemddzvwib9y https://jav.guru/searcho/?er=652f6a656d64647a767769623979   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://streamhihi.com/e/jemddzvwib9y
1405 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://vide0.net/e/a27psf2tntxa https://jav.guru/searcho/?hr=61323770736632746e747861   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://vide0.net/e/a27psf2tntxa
1406 v_iccmw javguru https://jav.guru/785503/cead-708-aikawa-mika-two-disc-hyper-best-4-hours-and-24/ https://maxstream.org/embed-5qd5k8pam5p8.html https://jav.guru/searcho/?or=656d6265642d357164356b3870616d3570382e68746d6c   embed 2026-08-30 14:01:40 2026-08-30 14:01:40 javguru https://maxstream.org/embed-5qd5k8pam5p8.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.848ms