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