↧
Answer by RavinderSingh13 for How can I pipe the filename into an ffmpeg...
Could you please try following, since I don't have ffpmeg command so couldn't test it. This should save output into same Input_file itself, better to test it on a test folder and once happy with...
View ArticleAnswer by Cyrus for How can I pipe the filename into an ffmpeg command?
With xargs: printf "%s\0" * | xargs -0 -I {} ffmpeg -i {} -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 converted_{} See: man xargs
View ArticleHow can I pipe the filename into an ffmpeg command?
I would like to run this command in the terminal: ffmpeg -i <input-file> -ac 2 -codec:a libmp3lame -b:a 48k -ar 16000 <output-file.mp3> on every mp3 file in a folder. The input and output...
View Article