From 6797d3e58f6b1eeb66dd66e5cd6840315df37e3b Mon Sep 17 00:00:00 2001 From: "R. M" <50295204+glomatico@users.noreply.github.com> Date: Sun, 1 Jan 2023 21:34:55 -0300 Subject: [PATCH] Fixed placeholder tag for music videos --- gamdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gamdl.py b/gamdl.py index 695d640..1c32153 100644 --- a/gamdl.py +++ b/gamdl.py @@ -363,7 +363,7 @@ class Gamdl: def fixup_music_video(self, decrypted_location_audio, decrypted_location_video, fixed_location, final_location): os.makedirs(final_location.parents[0], exist_ok = True) - subprocess.check_output(['MP4Box', '-quiet', '-add', decrypted_location_audio, '-add', decrypted_location_video, '-itags', 'name=placeholder', '-new', fixed_location]) + subprocess.check_output(['MP4Box', '-quiet', '-add', decrypted_location_audio, '-add', decrypted_location_video, '-itags', 'artist=placeholder', '-new', fixed_location]) shutil.copy(fixed_location, final_location)