Merge pull request #187 from huangynn/patch-1

Update download_video.py
This commit is contained in:
Songting
2023-04-18 15:40:25 +08:00
committed by GitHub
+1 -1
View File
@@ -28,7 +28,7 @@ def generate_infos():
def download_video(info):
link = info["link"]
filename = info["filename"]
os.system(f"youtube-dl -f 0 {link} -o ./video_data/{filename}.mp4")
os.system(f"youtube-dl -f 0 {link} -o ./video_data/{filename}.mp4" --no-check-certificate)
if __name__ == "__main__":