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

Permission Denied while deleteing a file or folder in Windows

“ Access denied ” while deleting a directory usually means the folder is in use, protected, owned by another user, or you lack sufficient pe...