WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2024 Poal.co

692

Works on mobile and desktop. I use this to get m3u8 links to videos on pretty much any site. There is a download page that will download the videos for you, but it doesn't work for me. I just click on the m3u8 link and that copies it to the clipboard. From there you can paste the url into your browser or use ffmpeg to download the video.

Example

ffmpeg -i https://video.twimg.com/amplify_video/1748450892938924032/pl/avc1/720x896/mp4a/128000/zY7KVlLxTJoogjJ9.m3u8?container=fmp4 "./storage/movies/Mentally I'll tranny fakes birth at show.mp4"

ffmpeg -i [URL] [OUTPUT] or yt-dlp [URL] -o [OUTPUT] or yt-dlp [URL] --downloader ffmpeg -o [OUTPUT]

Source Code (greasyfork.org)

Script (Direct Link) (update.greasyfork.org)

Works on mobile and desktop. I use this to get m3u8 links to videos on pretty much any site. There is a download page that will download the videos for you, but it doesn't work for me. I just click on the m3u8 link and that copies it to the clipboard. From there you can paste the url into your browser or use ffmpeg to download the video. Example ``` ffmpeg -i https://video.twimg.com/amplify_video/1748450892938924032/pl/avc1/720x896/mp4a/128000/zY7KVlLxTJoogjJ9.m3u8?container=fmp4 "./storage/movies/Mentally I'll tranny fakes birth at show.mp4" ``` `ffmpeg -i [URL] [OUTPUT]` or `yt-dlp [URL] -o [OUTPUT]` or `yt-dlp [URL] --downloader ffmpeg -o [OUTPUT]` [Source Code](https://greasyfork.org/en/scripts/449581-m3u8/code) [Script (Direct Link)](https://update.greasyfork.org/scripts/449581/m3u8.user.js)

(post is archived)

[–] 0 pt

Do you find the m3u with inspector? Is this any different or better than yt-dl? Can it grab on demand vids by any chance?

[–] 1 pt

I'm not sure what you mean by "on demand" so I can't help you there. You don't have to look at any page source. The userscript will show a little button on your screen anytime it finds an m3u8 stream on a website (you might have to start the video first). You click the button and there is a download option which takes you to a website (tools.thatwind.com) to download the m3u8. Or you can just copy one of the links and use whatever downloader you want. I showed how to do it with ffmpeg in my example.

[–] 1 pt

Oh so much more straightforward than I thought. Excellent. Thanks.