elsayed85 / movies_m3u8CloudflareWorkerProxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

m3u8 CloudflareWorker Proxy

Install Method 1:

git clone https://github.com/Gratenes/m3u8CloudflareWorkerProxy.git m3u8proxy
cd m3u8proxy
npx wrangler login
npx wrangler publish

Install Method 2:

Deploy to Cloudflare Workers

Example:

const url = 'https://example.url.example/?url=Link.m3u8&origin=url.example'

// If either your url or link has parameter's, encode via encodeURIComponent(link)
const encodedUrl = `https://m3u8.proxy.example/
?url=${encodeURIComponent("https://thisdomain.works/file.m3u8")}
&referer=${encodeURIComponent("https://thisdomain.works")}
&origin=${encodeURIComponent("https://thisdomain.works")}
`

About


Languages

Language:TypeScript 100.0%