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
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- 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.007 seconds, 7 queries executed - Memory usage: 522.21 KiB (Peak: 528.85 KiB) ]