[MP3 ENCODER] lame_enc.dll - MPEG-2 encoding. Possible?

2001-09-20 Thread gerlach
Hi i'm new to this mailing list, because i'm using the lame_enc.dll for automated converting of WAV-files (22050 khz sample rate, Mono, 56kbs) to MP3 files. I configure BE_CONFIG as Below memset(config,0,sizeof(config)); // clear all fields config.dwConfig = BE_CONFIG_LAME;

Re: [MP3 ENCODER] Re: LAME - THREAD_SAFE

2001-09-20 Thread Gabriel Bouvigne
Read only parts of the structures are no problem, you have just to make sure, parts which can change multiple times (instead only once at initialisation) are propperly protected (you didn't want to read from variables which can't be updated with an atomic operation without a protection

Re: [MP3 ENCODER] Thoughts on mp3encoder posting policy

2001-09-20 Thread David Balazic
Koch Tibor wrote: From: "Warren Toomey" [EMAIL PROTECTED] I could allow only subscribers to post to the list, but I've done this before on other lists, and I found that people often post from other e-mail addresses, and that blocks their postings. Let that be their problem. I think

Re: [MP3 ENCODER] Thoughts on mp3encoder posting policy

2001-09-20 Thread David Balazic
Dmitry wrote: Hello David, Thursday, September 20, 2001, 6:02:22 PM, you wrote: DB I am strongly against disallowing postings from non-subscribers : me too!!! DB Anti spam ideas : DB - allow only plain text messages, this will kill 99.9 % of spam ( I guesstimate :-) too

Re: [MP3 ENCODER] lame_enc.dll - MPEG-2 encoding. Possible?

2001-09-20 Thread gerlach
Hi there Have you any source examples for converting mono files, didn't work for me :-(( Thanks in advance ___ Martin GerlachDistributed Systems phone: +49 (0)221 250-1046mailto:[EMAIL PROTECTED] fax: +49 (0)221

Re: [MP3 ENCODER] lame_enc.dll - MPEG-2 encoding. Possible?

2001-09-20 Thread Steve Lhomme
Try my winamp plugin for that (you can automate using playlist :) http://mukoli.free.fr/out_lame/ The sources are also there. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 6:49 PM Subject: Re: [MP3 ENCODER] lame_enc.dll - MPEG-2

Re: [MP3 ENCODER] Re: LAME - THREAD_SAFE

2001-09-20 Thread Alexander Leidinger
On 20 Sep, Gabriel Bouvigne wrote: Read only parts of the structures are no problem, you have just to make sure, parts which can change multiple times (instead only once at initialisation) are propperly protected (you didn't want to read from variables which can't be updated with an atomic