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 could be the same (an overwrite), but if this is not possible, if there was a way to take the filename and append _converted maybe?
I'm not a bash expert, but I know that I need to pipe the results of an ls command into the ffmpeg command using a variable perhaps?