命令行版本
ffmpeg -y -i "rtsp://你的rtsp地址" -vcodec copy -f mp4 d:/1.mp4
中间的rtsp网址一定要加上双引号,避免出现url有特殊字符的问题
java代码版本
如果不支持tcp协议,去掉下面两个参数即可,加上这两个参数是因为ffmpeg默认使用udp协议,会导致丢包文章来源:https://www.toymoban.com/news/detail-670298.html
-rtsp_transport、-tcp文章来源地址https://www.toymoban.com/news/detail-670298.html
public static Boolean RTSPToMp4(String rstpUrl, String filePath) {
if(StrUtil.isBlank(rstpUrl) || StrUtil.isBlank(filePath)) {
return false;
}
ProcessBuilder extractBuilder = new ProcessBuilder("C:\\Program Files (x86)\\ffmpeg\\ffmpeg.exe"", "-y", "-rtsp_transport", " tcp", "-i",
rstpUrl, "-vcodec", "copy", "-f", "mp4", filePath);
try {
extractBuilder.inheritIO().start().waitFor();
} catch (InterruptedException | IOException e) {
e.printStackTrace();
return false;
}
return true;
}
到了这里,关于ffmpeg将rtsp流转成mp4的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!