home / media

streams

6 rows where v_uid = "v_e6mxo"

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
1000 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://javclan.com/e/03hfjx23fq5y https://jav.guru/searcho/?xr=303368666a78323366713579   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://javclan.com/e/03hfjx23fq5y
1001 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://turbovidhls.com/t/68ed43448c09c https://jav.guru/searcho/?ur=36386564343334343863303963 https://cdn3.turboviplay.com/data3/68ed43448c09c/68ed43448c09c.m3u8 m3u8 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://turbovidhls.com/t/68ed43448c09c
1002 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://tracylocalschool.com/e/vkc3xhk5zcaa https://jav.guru/searcho/?tr=766b633378686b357a636161   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://tracylocalschool.com/e/vkc3xhk5zcaa
1003 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://streamhihi.com/e/z573g584qsjs https://jav.guru/searcho/?er=652f7a3537336735383471736a73   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://streamhihi.com/e/z573g584qsjs
1004 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://vide0.net/e/t7i9whj724q8 https://jav.guru/searcho/?hr=7437693977686a3732347138   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://vide0.net/e/t7i9whj724q8
1005 v_e6mxo javguru https://jav.guru/787709/mmr-aa361-cos-para/ https://maxstream.org/embed-q385ibeuf5km.html https://jav.guru/searcho/?or=656d6265642d713338356962657566356b6d2e68746d6c   embed 2026-08-30 09:59:11 2026-08-30 09:59:11 javguru https://maxstream.org/embed-q385ibeuf5km.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 4.975ms