Celeb Glow
news | February 28, 2026

What is the ffmpeg command to convert 3gp to ulaw?

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?

1 Answer

The simplest example is:

$ ffmpeg -i input -codec:a pcm_mulaw output.wav

Refer to ffmpeg -encoders to see a list of available encoders.

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy