diff options
author | neodarz <neodarz@neodarz.net> | 2019-01-20 23:55:58 +0100 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-01-20 23:55:58 +0100 |
commit | 47f50f676eccda1a2cf7d4d20d70df6313730142 (patch) | |
tree | b5b3064c284eddf956f9606ff925ef7a9ca8113d | |
parent | b52490cd87ab87c3413b3d484149bd0b312d1e50 (diff) | |
download | convert.py-47f50f676eccda1a2cf7d4d20d70df6313730142.tar.xz convert.py-47f50f676eccda1a2cf7d4d20d70df6313730142.zip |
Remove usless comment
Diffstat (limited to '')
-rwxr-xr-x | convert.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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) |