diff options
-rw-r--r-- | .gitignore | 4 | ||||
-rwxr-xr-x | jamos | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -4,4 +4,6 @@ music/* cookies.txt # VSCode settings -.vscode/*
\ No newline at end of file +.vscode/* + +venv/* @@ -200,7 +200,7 @@ def create_downloader(music_directory, cookies): audio_options = { 'format': 'mp3/bestaudio/best', 'cookiefile': cookies, - 'outtmpl': music_directory + '%(title)s.%(ext)s', + 'outtmpl': os.path.join(music_directory, '%(title)s.%(ext)s'), 'postprocessors': [ { 'key': 'FFmpegExtractAudio', @@ -298,7 +298,7 @@ if __name__ == "__main__": print("Done".format(f)) print("Moving file...", end="") move_file(f, metadata, music_directory) - print("Done", end="") + print("Done") counter += 1 except Exception as e: # just gonna print this and move on to the next file. |