-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
convert to mp3 mono #3
Comments
Hi Javier, MP3 encoder uses LAME MP3 library. As original LAME is written in C, I have made a JavaScript library for web browsers using C-to-JavaScript converter. https://github.com/higuma/mp3-lame-encoder-js LAME is mostly made for Hi-Fi audio. It is not difficult to setup LAME for 2-ch stereo. But It needs special configuration for mono. In fact (to tell you honestly), I do not know how to configure to mono correctly (I tried but could not). Please see the following issue. Numbers of people have tried to make LAME JavaScript encoder with mono. I have checked some of them a few month ago (from May to July). But I found none of them was successful. If you can use another encoding than MP3, Ogg Vorbis is easier. You can set numChannels to 1. |
Dear Higuma, thank you for your reply , i have to say i have found a few people using Lame to export Mono MP3 with no problems, i will post the links here soon, so i dont think that's a problem really |
here you have it |
Blixt also exports with lame to mono 1 channel |
so those two libraries above use Lame to export to 1 channel mono successfully, |
Thank you for your nice imformation. I will check them later. |
in many ways your library is better and more complete than the others, Javier ideami On Thu, Oct 15, 2015 at 3:40 AM, Yuji Miyane [email protected]
|
Thank you Javier. Best regards, 2015-10-15 21:17 GMT+09:00 Javier [email protected]:
|
thank you Yuji, Javier ideami On Thu, Oct 15, 2015 at 6:04 AM, Yuji Miyane [email protected]
|
good day, i read this
"If you use MP3 encoding, you cannot change .numChannels from default (current MP3 encoder supports 2-channel stereo only)."
in my case i need to convert microphone input to Mono Mp3, how could i change the code to allow for that?
thank you so much
The text was updated successfully, but these errors were encountered: