Quantcast
Browsing latest articles
Browse All 3 View Live

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 Article


Answer 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 Article


How 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
Browsing latest articles
Browse All 3 View Live