for file in *.mp3; do
    ffmpeg -i "$file" -c:a libvorbis "${file%.mp3}.ogg"
done
Description :

Example :

2026 May