*** 依赖:
maven
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.3</version> </dependency>
linux_shell
ffmpeg
String CMD = "/usr/local/bin/ffmpeg -i %s -c copy -bsf:a aac_adtstoasc /data/video/his/%s.mp4";
CommandLine cmdLine = CommandLine.parse(cmd);
DefaultExecutor executor = new DefaultExecutor();
PumpStreamHandler streamHandler = new PumpStreamHandler(System.out, System.err);
executor.setStreamHandler(streamHandler);
int exitValue = executor.execute(cmdLine);
log.error(">>>>>>>>>>>>>>>>>下载百度历史视频结束,返回代码{}",exitValue);