From 0303382528f2db66ffdc3c00f2294dad8f08ff3e Mon Sep 17 00:00:00 2001 From: edbrz9 Date: Thu, 29 Dec 2022 13:45:51 +0100 Subject: [PATCH] check --- proj/y2t/y2t.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/proj/y2t/y2t.py b/proj/y2t/y2t.py index 2107566..0708079 100644 --- a/proj/y2t/y2t.py +++ b/proj/y2t/y2t.py @@ -1,5 +1,9 @@ import youtube_dl import sys +import os + +with open ("hello.txt", 'w') as file: + file.write("hello file") url = sys.argv[1] lang = sys.argv[2] @@ -14,7 +18,7 @@ ydl_opts = { 'lkjsdlfkjsdf': 'sdflkj', 'outtmpl': '%(id)s', 'skip_download': True, - 'writethumbnail': True, + 'writethumbnail': False, 'quiet': True }