From 58f5a092be9509212a9af82f34a899a9b417c78b Mon Sep 17 00:00:00 2001 From: NeodarZ Date: Sun, 15 Oct 2017 13:55:09 +0200 Subject: Fix bug when file mp3 doesn't exist the script don't print the actual converted file --- convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convert.py b/convert.py index 3951ab1..0316127 100755 --- a/convert.py +++ b/convert.py @@ -58,8 +58,8 @@ for file in sorted(os.listdir(sourcedir)): if os.path.isfile(outdir+"/"+name+".mp3"): if os.path.getsize(path_rm_end_slash(sourcedir)+"/"+name+".mp4") == os.path.getsize(outdir+"/"+name+".mp3"): print("File "+path_rm_end_slash(sourcedir)+"/"+name+".mp3 already exist. Use -y for overwrite.") - else: - print("Converting : "+name) + else: + print("Converting : "+name) count += 1 #cmd = ["ffmpeg", "-n", "-i", sourcedir+"/"+name+".mp4", "-c:a", "libmp3lame", outdir+"/"+name+".mp3"]² cmd = "ffmpeg "+arg+" -i '"+path_rm_end_slash(sourcedir)+"/"+name+".mp4' -c:a libmp3lame '"+outdir+"/"+name+".mp3'" -- cgit v1.2.1