From 0d0d9a9515ac416b8b52ab133de4cd7c0d4c4738 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Mon, 12 Jun 2017 21:23:10 +0530 Subject: [PATCH] Change deprecated args.quiet to args.verbose --- spotdl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spotdl.py b/spotdl.py index a3e09c0..461d32d 100644 --- a/spotdl.py +++ b/spotdl.py @@ -191,10 +191,10 @@ def convertWithFfmpeg(music_file): # on MacOS brew install ffmpeg --with-fdk-aac will do just that. Other OS? # https://trac.ffmpeg.org/wiki/Encode/AAC # - if args.quiet: - ffmpeg_pre = 'ffmpeg -hide_banner -nostats -v panic -y ' - else: + if args.verbose: ffmpeg_pre = 'ffmpeg -y ' + else: + ffmpeg_pre = 'ffmpeg -hide_banner -nostats -v panic -y ' if input_ext == '.m4a': if output_ext == '.mp3':