[MP3 ENCODER] Layer3 C code

2000-08-02 Thread Soyeb
Where can i find C code for LAME layer3 mp3encoder. rgds soyeb -- MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Re: [MP3 ENCODER] Layer3 C code

2000-08-02 Thread Harald Niesche
Asking altavista for "+lame +mp3 +encoder +source" and clicking the first link gives me this address: http://www.sulaco.org/mp3/ Harald - Original Message - From: "Soyeb" [EMAIL PROTECTED] To: "Encoder Mail list" [EMAIL PROTECTED] Sent: Wednesday, August 02, 2000 8:22 AM Subject: [MP3

[MP3 ENCODER] Decoding with lame?

2000-08-02 Thread Helmut Strickner
I have read some postings on this list about the possibility to use lame for decoding. Is it possible, and if true does that apply to the exe version only?. I have not found any clue about setting the lame dll for 'decoding of an mp3 file' option. I would like to encode and play back without

Re: [MP3 ENCODER] 3.86a, bug with -h ?

2000-08-02 Thread Stephan Ebertshäuser
Hi all! Wednesday, August 02, 2000, 1:06:26 AM, you wrote: In 3.86a it seems, that this feature is always switched on. I'am using: -mj --vbr-old -V1 -b128 -F Adding -h has no influence. With the older 3.85, -mj -V1 -b128 -F gives better results as -mj -V1 -b128 -F -q1.

Re: [MP3 ENCODER] Decoding with lame?

2000-08-02 Thread Harald Niesche
I just checked the code -- the decoder can not be accessed using the DLL API. I was trying to find out whether the DLL can recompress MP3 files to another bitrate, but it looks like that is impossible. Anyone interested? I'd probably try to build something... Harald - Original Message

Re[2]: [MP3 ENCODER] 3.86a, bug with -h ?

2000-08-02 Thread Roel VdB
Hello Stephan, Wednesday, August 02, 2000, 12:23:01 PM, you wrote: SE No! I realy mean 3.85 -q1. And it´s very audible. SE I will give some samples, if anyone tells me where I can upload them. (never SE done before) thanks! would be nice. if you cannot find a place to upload them/email to,

Re: Re: [MP3 ENCODER] 3.86a, bug with -h ?

2000-08-02 Thread ampex69
What exactly does the -q switch do anyways? Begin Original Message From: Stephan Ebertshäuser [EMAIL PROTECTED] Sent: Wed, 02 Aug 2000 12:23:01 +0200 To: [EMAIL PROTECTED] Subject: Re: [MP3 ENCODER] 3.86a, bug with -h ? Hi all! Wednesday, August 02, 2000, 1:06:26 AM, you wrote:

Re: [MP3 ENCODER] lame with 24 bit PCM input

2000-08-02 Thread Frank Klemm
:: :: Unfortunetly, the internal represenation inside LAME is 16bit, :: so we are using sf_read_short :-( :: :: It is on my TODO list to convert the internal representation :: to floating point, so then we can handle any type of input :: (and the resampling code wont have to convert back

Re: [MP3 ENCODER] Decoding with lame?

2000-08-02 Thread Frank Klemm
:: I have read some postings on this list about the possibility to use lame for :: decoding. Is it possible, and if true does that apply to the exe version :: only?. I have not found any clue about setting the lame dll for 'decoding of :: an mp3 file' option. I would like to encode and play

Re: [MP3 ENCODER] Decoding with lame?

2000-08-02 Thread Helmut Strickner
The question was regarding the decoding with the dll verion of lame. As Harald Niesche has observed there is no code for decoding in the dll version. It would really be very useful to implement the decode option into the dll. Anyone willing to have a go? Helmut :: I have read some postings

Re: [MP3 ENCODER] Decoding with lame?

2000-08-02 Thread Harald Niesche
What kind of API do you have in mind? There is some code in Lame that can read from several kinds of input files and delivers a buffer full of samples (actually, a left buffer and a right buffer). Would you like that, some kind of pull interface? You open the stream and then pull frames out of it