Skip to content

Archives

LAME MP3 encoder

Installing LAME on Hostinger

Download the linux binary from Github (yes, it's outdated, but it's the only one I could find). Unzip it and upload the file to Hostinger (into the tools directory, which is in the $PATH), then run chmod +x lame to make it executable.

Convert MegaVoice audio files to the proper encoding

lame -m m -b 128 [input] [output] 
(The -m flag is for mono audio, and -b is bitrate).

On Windows, to do all MP3 files in a folder using CMD, use this (create the "new" subfolder first):

for %f in ("*.mp3") do "H:\Portable Apps\LAME_MP3\lame.exe" -m m -b 128 "%f" "new\%~nf.mp3"