Linux下执行命令:

1. 下载FFMPEG可执行文件

2. 执行如下命令:

./ffmpeg -i 20160803175046.mp4 -vf "drawtext=fontfile=arial.ttf: fontsize=18: r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=black@0.5:text=82716" out.mp4


如何简单使用Java来调用:

......

String command = “<命令>”;

Process process = null;

process = Runtime.getRuntime().exec(new String[]{"sh","-c",command}); //之前没有使用sh来执行导致运行不了 
process.waitFor();

.....


Logo

更多推荐