people some help…
is there some tutorial for FMOD? i need some library to help me record voice on a Acer with windows mobile 5.0
- cornelyus asked 11 years ago
- You must login to post comments
If you want to save it as MP3 then yes, you’ll need to convert it to MP3 by passing it to lame before saving it. You should be able to do this on-the-fly i.e. recording/encoding/saving all at the same time.
- Andrew Scott answered 11 years ago
- You must login to post comments
i am still taking baby steps on this C# environment..but thanks for all the help man
Cheers
- cornelyus answered 11 years ago
- You must login to post comments
[quote="andrew":1hl9mrk0]If you want to save it as MP3 then yes, you’ll need to convert it to MP3 by passing it to lame before saving it. You should be able to do this on-the-fly i.e. recording/encoding/saving all at the same time.[/quote:1hl9mrk0]
hello once again…
i already have a small program to record voice.. but at the moment i can only record and then playback.. the sound data is on a buffer… i have to transform it in wav and then convert to mp3? or i can pass from the buffer directly to mp3?
- cornelyus answered 11 years ago
- You must login to post comments
You should be able to send it straight to lame. Please read the docs for lame to determine if your recorded data is in a format usable by lame.
- Andrew Scott answered 11 years ago
- You must login to post comments
Look at the "record" sample program that comes with the FMOD api.
- Andrew Scott answered 11 years ago
- You must login to post comments
i presume u are talking about this? fmodapi375ce.zip
- cornelyus answered 11 years ago
- You must login to post comments
I was able…with some help.. of implementing a small program on windows mobile to record and then playback what i record…
but now .. can i convert what i recorded to a mp3 file and save it on the directory i want?
- cornelyus answered 11 years ago
- You must login to post comments
Encoding is beyond the scope of FMOD. You’ll need to feed the data you receive from recording to an encoder library like lame :
- Andrew Scott answered 11 years ago
- You must login to post comments
so i can’t save the "audio data" each time i record something?
i have to use the LAME library to convert it and then save it?
- cornelyus answered 11 years ago
- You must login to post comments
Please login first to submit.