From 111dccd71ad736388a946fe206e7c3f91501384e Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Thu, 24 Mar 2022 18:40:17 +0100 Subject: [PATCH] added no-call-home option to yt-dlp calls --- download-music.py | 1 + download-once.py | 2 ++ download-videos.py | 1 + 3 files changed, 4 insertions(+) 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