I just wanted to know the general idea to how to download video from any website.
Thing I try
- I Inspect the page saw the blob URL in video attribute tag. Copy-paste the blob URL in browser but it can't get open.
- I also look around the Developer tool in Network tab. There I saw XHR request continue receiving with extension using .m4s
- Copy the above XHR request as curl and create the file using command curl 'https://......." > file.mp4. Created file can't be read by player
Can anyone tell me the idea to do this. I don't want to use any library or package like pytube, youtube-dl. Just learning to grab video from any site.