I downloaded LAME for Windows. It have two files, one is lame_enc.dll
and another is lame.exe
.
I want to convert an MP3 file from 320kbs to 128kbs.
In Windows I use command line: C:\Lame\lame.exe --preset cbr 128 "320.mp3" "128.mp3"
- it works good. My question is how can I call lame.exe
from my Android project? And what steps must I take to achieve that?
Thank you for your replies!