I have been trying to convert a set of audio files from stereo to mono type.Can you help by providing the command for converting all the files in the folder?
Asked
Active
Viewed 1,705 times
2
-
1`for i in *.wav; do ffmpeg -i "$i" -ac 1 "${i%.*}.wav"; done` – TGrif Jan 13 '22 at 16:39
-
1Does this answer your question? [How do you convert an entire directory with ffmpeg?](https://stackoverflow.com/questions/5784661/how-do-you-convert-an-entire-directory-with-ffmpeg) – TGrif Jan 13 '22 at 16:41