FFmpeg on a list of files




If you want to process a batch of files like converting a list of mp4 files to mp3 :

for file in *; do ffmpeg -i "${file}" "${file}".mp3; done



Any thoughts?

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Loading more content...