Download YouTube video using Python to a certain directory

前端 未结 10 2229
醉话见心
醉话见心 2020-12-07 17:08

I have tried the following code to download a video in YouTube and it is working, but I want to save the video at a particular location. Now it is saving the video in

10条回答
  •  暖寄归人
    2020-12-07 17:39

    youtube_dl has a giant list of options: https://github.com/rg3/youtube-dl/blob/master/youtube_dl/YoutubeDL.py#L128-L278

    But I don't see any that control the output directory. So you can move the file afterward. For that, see: How to move a file in Python.

提交回复
热议问题