multiple audio file conversion

Mateusz Marzantowicz mmarzantowicz at osdf.com.pl
Tue Jan 1 19:36:38 UTC 2013


On 01.01.2013 18:28, Claude Jones wrote:
> On 01/01/2013 11:54 AM, Reindl Harald wrote:
>> yum install soundconverter
>>
>> some days ago it converted 75 minutes of FLAC in 8 seonds to VBR MP3
>
> perfect! thanks
>

Or you can use loop in bash and any tool that converts single files.

Here is a very simple example for all ogg files in some directory:

for in_file in *.ogg
do
    ....
    convert_single_file $in_file $out_file
    ....
done


You can also pipe more than one converter to accomplish fancy effects.

Sometimes shell is faster and easier than all-in-one make everyone happy
GUI tool.


Mateusz Marzantowicz


More information about the users mailing list