List of free media streaming websites: https://fmhy.pages.dev/videopiracyguide

Ill be going with this one for this tutorial https://rivestream.live/


Download ublock! https://ublockorigin.com/

Add an ublock filter that disables the devtool disabler, if the website you are sourcing from uses one. For rivestream.live add

||cdn.jsdelivr.net/npm/disable-devtool$script

Now choose your kino!
Ill be using a24 as an example.
Open network monitor Ctrl + Shift + E or via web developer tools.
Reload the page with the network monitor running and wait for the page to load,
then filter to XHR packets and look for the packet with the mp2t type,
now copy its value as an URL.


You will end up with a .m3u8 link that should look something like this

https://zeltroncloud66.pro/file1/gbFtj~KVbTvgRnKRId8jUML8EmU+aIV+LVwYVyr9yisO4HvK+x65DVUjDxZGkRgOz5Di4l6K9A4bU0OPIuBmJnQuHYBvXCg~ggZRWCPp5ETissaQ4mF9GgXNi1Q1n91iCdOXAMx~B3M6WNRXl5k6My3tIRnS6Pq3x4OPHV61ag0=/MTA4MA==/aW5kZXgubTN1OA==.m3u8

Now you can use this link to stream on whatever media player youd like, most media players support streaming. I am using mpv, example:

mpv "https://zeltroncloud66.pro/file1/gbFtj~KVbTvgRnKRId8jUML8EmU+aIV+LVwYVyr9yisO4HvK+x65DVUjDxZGkRgOz5Di4l6K9A4bU0OPIuBmJnQuHYBvXCg~ggZRWCPp5ETissaQ4mF9GgXNi1Q1n91iCdOXAMx~B3M6WNRXl5k6My3tIRnS6Pq3x4OPHV61ag0=/MTA4MA==/aW5kZXgubTN1OA==.m3u8"

You can also use this link to download and convert the media at the same time with ffmpeg, although in my experience the conversion is notably slower then if you already had the media on your hard drive. Example:

ffmpeg -i "https://zeltroncloud66.pro/file1/gbFtj~KVbTvgRnKRId8jUML8EmU+aIV+LVwYVyr9yisO4HvK+x65DVUjDxZGkRgOz5Di4l6K9A4bU0OPIuBmJnQuHYBvXCg~ggZRWCPp5ETissaQ4mF9GgXNi1Q1n91iCdOXAMx~B3M6WNRXl5k6My3tIRnS6Pq3x4OPHV61ag0=/MTA4MA==/aW5kZXgubTN1OA==.m3u8" -c:v libx265 -crf 26 -tune grain -preset superfast -c:a libopus -b:a 128k -vbr on -compression_level 10 "kino.mp4"