[asterisk-users] Transcoding G.729 files
Thomas Kenyon
digium at sanguinarius.co.uk
Tue Sep 23 06:35:50 CDT 2008
Alex Balashov wrote:
> SOX will do it if you install its G.729 format library.
>
> As far as converting a group of files, that's what scripting is for, i.e.
>
> for FILE in `find . -type f -name '*.g729'`;
> do
> NFILE=$(echo $FILE | sed 's/\.g729/\.wav/g')
> sox [some args] $FILE ... $NFILE ...
> done
>
Thanks, didn't know sox could support g.729.
More information about the asterisk-users
mailing list