public class VideoStream { public static void main(String[] args) { // 调用ffmpeg函数 String ffmpeg = "ffmpeg -i rtsp://xxx -f h264 -vcodec libx264 -acodec aac -strict -2 -y output.264"; try { Runtime rt = Runtime.getRuntime(); Process proc = rt.exec(ffmpeg); InputStream
写一段java,调用ffmpeg函数,拉取rtsp视频流并解析转码为264
最新推荐文章于 2024-08-20 11:29:23 发布