home / media

streams

6 rows where v_uid = "v_2l585"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1516 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://javclan.com/e/n4k9ayzueo1u https://jav.guru/searcho/?xr=6e346b3961797a75656f3175   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://javclan.com/e/n4k9ayzueo1u
1517 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://tracylocalschool.com/e/cwdm7tyvh32k https://jav.guru/searcho/?tr=6377646d377479766833326b   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://tracylocalschool.com/e/cwdm7tyvh32k
1518 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://streamhihi.com/e/v2hl8degorve https://jav.guru/searcho/?er=652f7632686c386465676f727665   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://streamhihi.com/e/v2hl8degorve
1519 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://javplaya.com/embed/37mwoxjv25ee https://jav.guru/searcho/?rr=33376d776f786a7632356565   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://javplaya.com/embed/37mwoxjv25ee
1520 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://vide0.net/e/wz0hg1j2kik7llzv9cq28t0u01055o4x https://jav.guru/searcho/?hr=777a306867316a326b696b376c6c7a76396371323874307530313035356f3478   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://vide0.net/e/wz0hg1j2kik7llzv9cq28t0u01055o4x
1521 v_2l585 javguru https://jav.guru/174332/id-055-love-idols-sunshine/ https://maxstream.org/embed-l2m9um5ijlvj.html https://jav.guru/searcho/?or=656d6265642d6c326d39756d35696a6c766a2e68746d6c   embed 2026-08-30 14:02:45 2026-08-30 14:02:45 javguru https://maxstream.org/embed-l2m9um5ijlvj.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.362ms