Issue
I don't know if this is the right place to ask such a question, but I want to download an online video of my graduation. I tried to look up the source code and in inspect option in google chrome but I didn't succeed. Is there any way to download the video?
Solution
This page uses HTTP Live Streaming deploying the M3U8 file format. After obtaining the link to the M3U8 file, it can be downloaded and converted with other software libaries also supporting HLS (e.g. VLC media player or ffmpeg ffmpeg -i "https://….m3u8?…" output.mp4
).
You can extract the .m3u8
URL using Chrome Dev Tools, which allow you to browse loaded resources in your browser:
Log network activity
Reload the page. The Network panel logs all network activity in the Network Log.
Once opened with F12, you can press F5 to reload all resources and use the search option to filter for m3u8
:
Answered By - Niklas E.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.