Thursday, July 21, 2022

Converting #Ogg to #mp3, Converting #audio file from one #format to anot...


Converting #Ogg to #mp3, Converting #audio file from one #format to another format

brew install ffmpeg   --> This will install ffmpeg if its not already then mac or you can use apt-get install ffmpeg if you are working in linux.


find . -type f -iname '*.ogg' -execdir sh -c \
'ffmpeg -v 8 -i "$1" "${1%.*}.mp3" && rm -- "$1" && echo "$1"' sh {} \;

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

Enhancing Unix Proficiency: A Deeper Look at the 'Sleep' Command and Signals

Hashtags: #Unix #SleepCommand #Signals #UnixTutorial #ProcessManagement In the world of Unix commands, there are often tools that, at first ...