On Mon, 21 Feb 2011 01:29 +0000, "RW" <[email protected]> wrote: > > I found a recipe for converting flac to mp3: > > flac -cd in.flac | lame -h - out.mp3 > > and I thought I might be able to able to combine multiple flac files > into a single mp3 file with something like the following: > > ( flac -cd file1.flac ; flac -cd file2.flac ) | lame -h - both.mp3 > > but in practice only the first flac command is executed (see below)
The following command does what you want: % flac123 --wav=- -q *.flac | lame -h - out.mp3 HTH Herbert _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[email protected]"
