Re: [MP3 ENCODER] LAME feature request

2003-01-22 Thread Gabriel Bouvigne
This is easy enough under *nix to implement using return codes. Using the lame binary compiled for dos, there is no option to cause LAME to delete the output file if an error is encountered. Speciffically, the error i am getting that I would like this for is Error reading input file Under

Re: [MP3 ENCODER] LAME feature request

2001-10-02 Thread jeremy brand
On Tue, 2 Oct 2001, the following spilled from the mind of Brent Geery: On-the-fly file splitting. For example, say I have a 2GB wav, and I wanted the MP3 to be split every 10MB, or whatever. This would also come in handy if someone is compressing a live stream of data, where to final MP3

Re: [MP3 ENCODER] LAME feature request

2001-10-02 Thread Brent Geery
On Wed, 3 Oct 2001 00:36:41 +0200 (WEDT), jeremy brand [EMAIL PROTECTED] wrote: You can just write your mp3s to stdout. split(1) comes to mind. (example) lame foo.wav - | split -b 10485760 - ~/yourdir/tmp/mp3_prefix_ Same goes for input. cat *.wav | lame - file.mp3 or cat *.wav | lame