自行下载ffmpeg最新版,代码如下:
/**
* @author 四个空格-https://www.4spaces.org/
*/
public class FfmpegTest {
public static void main(String[] args) {
String sPath = "D:\\mp3test\\2.amr";
String tPath = "D:\\mp3test\\2.mp3";
try {
new FfmpegTest().changeAmrToMp3(sPath,tPath);
} catch (EncoderException e) {
e.printStackTrace();
}
}
public void changeAmrToMp3(String sourcePath, String targetPath) throws IllegalArgumentException, EncoderException {
String webroot = "D:\\javaffmpeg\\FFmpeg\\bin";
Runtime run = null;
try {
run = Runtime.getRuntime();
long start=System.currentTimeMillis();
System.out.println(new File(webroot).getAbsolutePath());
//执行ffmpeg.exe,前面是ffmpeg.exe的地址,中间是需要转换的文件地址,后面是转换后的文件地址。-i是转换方式,意思是可编码解码,mp3编码方式采用的是libmp3lame
Process p=run.exec(new File(webroot).getAbsolutePath()+"/ffmpeg -i "+sourcePath+" -acodec libmp3lame "+targetPath);
//释放进程
p.getOutputStream().close();
p.getInputStream().close();
p.getErrorStream().close();
p.waitFor();
long end=System.currentTimeMillis();
System.out.println(sourcePath+" convert success, costs:"+(end-start)+"ms");
} catch (Exception e) {
e.printStackTrace();
}finally{
//run调用lame解码器最后释放内存
run.freeMemory();
}
}
}
最新评论
网飞没问题, 迪士尼+有解决方案么?
pp助手是安卓手机用的,根本下载用不来苹果
已解决
这样的话数据库里的结构为{"attachment":{"content":"xxx"}}, 要怎么才能变成{"content":"xxx"},从而使结构保持一致?
赞! make test不过的坑都写到的,谢谢楼主~
谢谢你
用了root用户还是一直502是怎么回事呢
student id 是空的