微信语音转换格式及拼接

工具类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

package com.willing.common.utils.audio;

import org.apache.commons.lang3.StringUtils;
import java.io.File;

/**
* 音频格式转换工具类
*
**/
public class AudioConvertUtil {

/**
* 将arm(微信录音文件格式)转为mp3
* @param sourceFileLocation 源文件路径,包含文件名及格式
* @param targetFileLocation 目标文件路径,包含文件名及格式
* @return 目标文件路径
* @throws IllegalArgumentException 非法参数
* @throws RuntimeException 转换过程未报错但没有生成文件或生成文件存在问题
*/
public static String amrToMp3(String sourceFileLocation,String targetFileLocation){
if(StringUtils.isBlank(sourceFileLocation)||StringUtils.isBlank(targetFileLocation)){
throw new IllegalArgumentException("非法的文件路径,源文件路径和目标输出路径不能为空。");
}
File source = new File(sourceFileLocation);
File target = new File(targetFileLocation);
it.sauronsoftware.jave.AudioUtils.amrToMp3(source, target);
if(target.exists()||target.length()!=0){
return targetFileLocation;
}else{
target.delete();
throw new RuntimeException("文件转换失败:语音文件未生成或生成空语音文件。");
}
}
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.willing.common.utils.audio;

import java.io.*;
import java.util.ArrayList;

/**
* 拼接音频文件工具类
*
**/
public class AudioConcatUtil {

/***
* 合并需要拼接的mp3
* @param audioLocations 音频文件路径集合
* @param targetLocation 拼接后文件目标地址
* @throws FileNotFoundException
* @throws IOException
* @throws RuntimeException 拼接过程未报错但没有生成文件或生成文件存在问题
*/
public static String concatMp3(ArrayList<String> audioLocations,String targetLocation) throws IOException {
File out = null;
FileInputStream fis = null;
FileOutputStream fos = null;
try {
out = new File(targetLocation);
fos = new FileOutputStream(targetLocation,true);
for (String audioLocation : audioLocations) {
fis = new FileInputStream(audioLocation);
int len = 0;
byte[] buf = new byte[fis.available()];
while ((len = fis.read(buf)) != -1){
fos.write(buf, 0, len);
}
}
File file = new File(targetLocation);
if (file.exists()||file.length()!=0) {
return targetLocation;
}else {
file.delete();
throw new RuntimeException("文件转换失败:语音文件未生成或生成空语音文件。");
}
}catch(FileNotFoundException e){
throw e;
} finally {
if(fis != null){
fis.close();
}
if(fos != null){
fos.close();
}
}
}
}

依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
<properties>
<jave.version>1.0.4</jave.version>
</properties>

<!-- 音频文件格式转换-->
<dependencies>
<dependency>
<groupId>com.github.dadiyang</groupId>
<artifactId>jave</artifactId>
<version>${jave.version}</version>
</dependency>
</dependencies>