Here I have created a manual for finding out the url and downloading the video to host using chrome dev tools.
Firstly get to the site that you watch the video on
Click ctrl + shift + c
and this will open
After getting there reload the page and start the video. After it has been running for a few seconds, pause it. Look at the Name
column and look for reocurring urls.
Here can be seen that 19-011021.mp4
is reoccuring many times. That means that it is sending chunks of data continuously. That means that it is the video playing and getting to host system. Find the first one occuring.
After that copy the url and open terminal and run the following command:
youtube-dl --no-mtime <copied url>
For example youtube-dl --no-mtime https://sirrah.carnet.hr/hls-baltazar/19-011021.mp4.m3u8?st=CE0ZLykhVzIaFJ88vewjtQ&e=1703109314
. If windows system youtube-dl has to be downloaded, for that search on google. Then open CMD and type that same command
First line is the command
It will start downloading and echoing a lot of info. Depending on the size of the video, it will have more/less info printed. Here is how it looks at the end Now open the folder you donwloaded the video in and watch the video!