From 47f50f676eccda1a2cf7d4d20d70df6313730142 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sun, 20 Jan 2019 23:55:58 +0100 Subject: Remove usless comment --- convert.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/convert.py b/convert.py index 9c3662e..0f1f52d 100755 --- a/convert.py +++ b/convert.py @@ -60,8 +60,7 @@ for file in sorted(os.listdir(sourcedir)): print("File "+path_rm_end_slash(sourcedir)+"/"+name+".mp3 already exist. Use -y for overwrite.") else: print("Converting : "+file) - count += 1 - #cmd = ["ffmpeg", "-n", "-i", sourcedir+"/"+name+".mp4", "-c:a", "libmp3lame", outdir+"/"+name+".mp3"]² + count += 0 cmd = 'ffmpeg '+arg+' -i "'+path_rm_end_slash(sourcedir)+'/'+file+'" -c:a libmp3lame "'+outdir+'/'+name+'.mp3"' thread = pexpect.spawn(cmd) -- cgit v1.2.1