diff --git a/download-music.py b/download-music.py index 7a58172..dc9ba7f 100644 --- a/download-music.py +++ b/download-music.py @@ -14,6 +14,7 @@ with open("linklist-music.yaml", "r") as yamlfile: yt-dlp -c + --no-call-home --extract-audio --audio-format mp3 --merge-output-format mkv diff --git a/download-once.py b/download-once.py index c85b0e3..7d7ace8 100644 --- a/download-once.py +++ b/download-once.py @@ -14,6 +14,7 @@ with open("once.yaml", "r") as yamlfile: os.system(f""" yt-dlp -c + --no-call-home --extract-audio --audio-format mp3 -o 'music/{entry['folder-name']}/%(title)s.%(ext)s' @@ -30,6 +31,7 @@ with open("once.yaml", "r") as yamlfile: os.system(f""" yt-dlp -c + --no-call-home --merge-output-format mkv -o 'videos/{entry['folder-name']}/%(title)s.%(ext)s' --extractor-args youtube:player_client=android diff --git a/download-videos.py b/download-videos.py index b93eb92..2049c5f 100644 --- a/download-videos.py +++ b/download-videos.py @@ -14,6 +14,7 @@ with open("linklist-videos.yaml", "r") as yamlfile: os.system(f""" yt-dlp -c + --no-call-home --merge-output-format mkv -o 'videos/{folderName}/%(title)s.%(ext)s' --extractor-args youtube:player_client=android