On Monday 01 August 2016 11:52:32 am you wrote: > I want to convert an audio file to G.711 format. I can see encoding to uLaw > PCM and aLaw PCM, but can't find a command line argument that will convert > my audio file to simple G.711.
$ ffmpeg -i input -f alaw out1 $ ffmpeg -i input -f mulaw out2 or: $ ffmpeg -i input out.al $ ffmpeg -i input out.ul Carl Eugen _______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
