I am able to convert it to wav using:
ffmpeg -i audio.3pg audio.wav
but I need the command to convert it to ulaw.
Anyone?
I am able to convert it to wav using:
ffmpeg -i audio.3pg audio.wav
but I need the command to convert it to ulaw.
Anyone?
The simplest example is:
$ ffmpeg -i input -codec:a pcm_mulaw output.wav
Refer to ffmpeg -encoders to see a list of available encoders.