remove mentions on config folder

This commit is contained in:
Georgi Gardev
2022-12-01 16:01:59 +02:00
parent 674492fd6b
commit 89220b2bbd
5 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ youtube_url = sys.argv[1]
out_name = sys.argv[2] if len(sys.argv) > 2 else 'temp'
out_folder = sys.argv[3] if len(sys.argv) > 3 else ''
full_file_path = f"""/config/www/audio/youtube/{out_folder}{out_name}"""
full_file_path = f"""/www/audio/youtube/{out_folder}{out_name}"""
ydl = youtube_dl.YoutubeDL({'format': 'bestaudio', 'outtmpl': full_file_path})