[MP3 ENCODER] LAME encoder

2003-03-13 Thread Pusillus
Hi, I need to play a 128bit stereo mp3 file. Im tryng to use lame library to do, but I obtain a noised pcm frames. what's wrong? #include stdio.h #includefcntl.h #includestdlib.h #includeunistd.h #include sys/ioctl.h #include linux/soundcard.h #include lame.h FILE *rec; FILE *raw;

Re: [MP3 ENCODER] lame encoder

2003-03-07 Thread bob singer
--- Damian Pitcon [EMAIL PROTECTED] wrote: Hi all, I have a question that I'd love if someone could help me with. I'm using cool edit pro 2 on windows XP and have installed the lame cooledit plugin into the main CE directory. But when I try to encode it says invalid file or format'. Any ideas

[MP3 ENCODER] lame encoder

2003-03-06 Thread Damian Pitcon
Hi all, I have a question that I'd love if someone could help me with. I'm using cool edit pro 2 on windows XP and have installed the lame cooledit plugin into the main CE directory. But when I try to encode it says invalid file or format'. Any ideas whats up? Please e-mail me at: [EMAIL

Re: [MP3 ENCODER] lame encoder

2003-03-06 Thread PhillLop
sorry mp3encoder

Re: [MP3 ENCODER] Lame Encoder!

2002-12-10 Thread Gabriel Bouvigne
I have found that lame encoder (lame.exe) can't encode wav file that have spaces in its' filename/folder. For examples: C:\My Music\Wav 01.wav (both have spaces in folder filename) C:\My Music\Wav01.wav (have space in folder name) C:\MyMusic\Wav 01.wav (have space in filename) It is the

Antwort: [MP3 ENCODER] Lame Encoder!

2002-12-10 Thread Detlef BIERITZ
hi there put it in C:\My Music\Wav 01.wav regards d. bieritz [EMAIL PROTECTED] Jutawan Muda [EMAIL PROTECTED] Gesendet von: [EMAIL PROTECTED] 09.12.2002 13:19 Bitte antworten an mp3encoder An: [EMAIL PROTECTED] Kopie: Thema: [MP3 ENCODER] Lame Encoder! Hi

[MP3 ENCODER] Lame Encoder!

2002-12-09 Thread Jutawan Muda
Hi Hello, I have found that lame encoder (lame.exe) can't encode wav file that have spaces in its' filename/folder. For examples: C:\My Music\Wav 01.wav (both have spaces in folder filename) C:\My Music\Wav01.wav (have space in folder name) C:\MyMusic\Wav 01.wav (have space in filename)

Re: [MP3 ENCODER] Lame encoder input- Help needed

2001-12-04 Thread Stefan Ohlsson
On Mon, 3 Dec 2001, Mark Taylor wrote: 2. I encoded a file in two ways. One - using the lame encoder command line options and the other by writing a small program to read data from a file and then using libmp3lame functions to encode. In both cases I used the ABR (average bitrate mode) at 12kbps.

Re: [MP3 ENCODER] Lame encoder input- Help needed

2001-12-04 Thread Alexander Leidinger
On 3 Dez, Manoj Palki wrote: 2. I encoded a file in two ways. One - using the lame encoder command line options and the other by writing a small program to read data from a file and then using libmp3lame functions to encode. In both cases I used the ABR (average bitrate mode) at 12kbps. The

RE: [MP3 ENCODER] Lame encoder input- Help needed

2001-12-03 Thread Manoj Palki
PROTECTED] Subject: Re: [MP3 ENCODER] Lame encoder input- Help needed Hi, I want to encode mp3's at 12kbps (constant bit rate). Lame presently only supports 8, 16, 32kbps and upwards. Does anyone know of the amount of effort which would be involved in modifying the code

Re: [MP3 ENCODER] Lame encoder input- Help needed

2001-12-03 Thread Mark Taylor
Thanks a lot Mark. I have some more questions and would be very grateful if someone can answer them. 1. When lame combines standard bitrates to get the required average, over what range is this average achieved? ( For ex : does lame achieve the average over a specified number of frames

Re: [MP3 ENCODER] Lame encoder input- Help needed

2001-11-30 Thread Mark Taylor
Hi, I am trying to encode raw PCM files into mp3 using the libmp3lame library. The PCM files are sampled at 8000khz, 16bit mono. My rather basic questions are 1) Should I read from the PCM file into an unsigned or a signed buffer? 2) When I call the function 'lame_encode_buffer_int'

Re: [MP3 ENCODER] Lame encoder input- Help needed

2001-11-30 Thread Mark Taylor
Hi, I want to encode mp3's at 12kbps (constant bit rate). Lame presently only supports 8, 16, 32kbps and upwards. Does anyone know of the amount of effort which would be involved in modifying the code to support 12kbps? Any help on how to go about it would be greatly appreciated.