Update download_video.py

This commit is contained in:
Songting
2023-04-19 17:24:39 +08:00
committed by GitHub
parent b35f4bc727
commit b3e7ad0e50
+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" --no-check-certificate)
os.system(f"youtube-dl -f 0 {link} -o ./video_data/{filename}.mp4 --no-check-certificate")
if __name__ == "__main__":