Youtube video download URL

后端 未结 5 1970
隐瞒了意图╮
隐瞒了意图╮ 2021-01-29 18:22

I wrote a program that gets youtube video URL and downloads it
Up today I did this:
1. get video \"token\" from \"/get_video_info?video_id=ID\" like:

h         


        
5条回答
  •  再見小時候
    2021-01-29 19:04

    After a lot of failed tries, this github repositories help me:

    https://github.com/rg3/youtube-dl

    Get the url only like:

    youtube-dl 'https://www.youtube.com/watch?v=bo_efYhYU2A' --get-url

    download an mp4 and save as a.mp4 like:

    youtube-dl 'https://www.youtube.com/watch?v=bo_efYhYU2A' -f mp4 -o a.mp4

    Good luck.

提交回复
热议问题