The programme is based on The LAME project and it read WAV-format files and encodes them into MP3 files.
- Lame Installed (View instructions below)
- Node 10.13.* or newer
You can install it with npm
:
$ npm install
This command will install the node-lame
npm package dependency and create the local application folder structure ready to go.
!Important : If you have not installed LAME yet, please use the following instruction.
Install on Windows
- Go to the the Lame Download Page and download the EXE or ZIP file.
- Navigate to the directory where Lame was installed in (most commonly
C:\Program Files (x86)\Lame For Audacity
). - Add the directory to your Environment Variables.
Store your .wav
files into the ./wav
subdirectory then run the following command line in your terminal :
$ npm run start
This command will encode your .wav
files into the MP3-format and store them in the ./mp3
subdiretory.
Once you are done or if needed you can clean the ./wav
or ./mp3
subdirectories by running the following command lines in your terminal :
$ npm run cleanMp3
or
$ npm run cleanWav
Enjoy !