The reason you will find it hard to find exact info or a guide is that this kind of information is not "good" to share. Why? Well not all videos are "happy to be downloaded" and they might prevent you from doing it if you tell them how you do it
You know what I mean...
But a few hints.
kernelcrash wrote:
find the video tag src which is most likely an m3u8 playlist or .mp4.
if its m3u8 you can use ffmpeg to save it as mp4.
ffmpeg is a free program
https://ffmpeg.zeranoe.com/builds/and it works like this
Code:
ffmpeg -i "THE SRC URL HERE" -c copy -bsf:a aac_adtstoasc "video.mp4"
kernelcrash wrote:
Each website is different so no single tool can be used to download all the videos.
Most of the sites are wordpress that use a plugin to protect the videos by checking if you are authenticated so its easy
You need a program like Fiddler 4 or some other snooping program to find the src url.
You will find that it is not a straight forward method and that a lot of testing is required.