AndroidLame
Introduction: Android raw 转 mp3
Tags:
lame
lame 官网
本项目主要方便大家在 android 上使用 lame。
Android 使用 AudioRecord 录音时不支持 mp3 格式,需要先录制为 raw 格式,然后在使用 lame 转换成 mp3
引用方式
Maven
<dependency>
<groupId>mobi.cangol.mobile</groupId>
<artifactId>lame</artifactId>
<version>1.0.1</version>
<type>pom</type>
</dependency>
Gradle
compile 'mobi.cangol.mobile:lame:1.0.1'
直接下载 jar 和 so 文件使用
https://github.com/Cangol/AndroidLame/tree/master/downloads
使用方法
LameUtils lameUtils = new LameUtils(1, 16000, 96);
boolean result = lameUtils.raw2mp3(sourcePath, targetPath);
