You are not logged in.
hello,
I use this to convert mp3 to opus for podcast but sadly i don't know how correctly change the extension.
ffmpeg -i %f -c:a libopus -b:a 128k -ac 2 '%f.opus' | zenity --progress --title="conversion opus stéréo 128kbps" --text=" conversion en cours... " --percentage=1 --pulsate
result:
bigbadaboum.mp3.opus
Sincerely,
bigbadaboum
Last edited by bigbadaboum (2023-02-24 13:55:16)
Offline
If its always an mp3 to opus conversion, you could use something like this:
ffmpeg -i %f -c:a libopus -b:a 128k -ac 2 "$(basename %f .mp3).opus" | zenity --progress --title="conversion opus stéréo 128kbps" --text=" conversion en cours... " --percentage=1 --pulsate
Mark solved threads as [SOLVED] to make it easier for others to find solutions.
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Hello,
the .mp3 extension has been removed from the new file name.
Thank you,
Offline
[ Generated in 0.010 seconds, 9 queries executed - Memory usage: 523.89 KiB (Peak: 524.73 KiB) ]