How to convert .VOC to MP3 or other audio format

audiofile conversionmp3video

I am looking for a (free) way to transform .VOC files to, lets say, MP3?

I just found Vidego, but I am not happy with the price of the software.

I have .VOC files and want to transform them to a more "standard" format. Which ways are there to convert those files?

Best Answer

ffmpeg is a free command line tool that can convert a huge number of audio and video formats including VOC files.

You can install it through Homebrew using the following command.

brew install ffmpeg

And then you can convert VOC files to MP3 like so.

ffmpeg -i sample.voc sample.mp3