home / media

streams

6 rows where v_uid = "v_b7ijy"

This data as json, CSV (advanced)

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

id ▼ v_uid source sourceUrl embedUrl proxyUrl directLink kind addedAt updatedAt dedupe
1606 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://javclan.com/e/c006pjfi169o https://jav.guru/searcho/?xr=63303036706a66693136396f   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://javclan.com/e/c006pjfi169o
1607 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://turbovidhls.com/t/68ec0eaf5788f https://jav.guru/searcho/?ur=36386563306561663537383866   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://turbovidhls.com/t/68ec0eaf5788f
1608 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://tracylocalschool.com/e/ytlxpksgd1jm https://jav.guru/searcho/?tr=79746c78706b736764316a6d   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://tracylocalschool.com/e/ytlxpksgd1jm
1609 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://streamhihi.com/e/fblj1uow339z https://jav.guru/searcho/?er=652f66626c6a31756f773333397a   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://streamhihi.com/e/fblj1uow339z
1610 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://vide0.net/e/vznuxikuz7u3 https://jav.guru/searcho/?hr=767a6e7578696b757a377533   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://vide0.net/e/vznuxikuz7u3
1611 v_b7ijy javguru https://jav.guru/785418/rebdb-186-my-true-self-for-you-tsujimoto-an/ https://maxstream.org/embed-gffzoe0j34yk.html https://jav.guru/searcho/?or=656d6265642d6766667a6f65306a3334796b2e68746d6c   embed 2026-08-30 14:03:39 2026-08-30 14:03:39 javguru https://maxstream.org/embed-gffzoe0j34yk.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.856ms