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 }