ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

海康rtsp拉流,rtmp推流,nginx部署转flv集成

2026/9/23 8:01:05 拓冰建站 浏览量
海康rtsp拉流,rtmp推流,nginx部署转flv集成

海康rtsp拉流,rtmp推流,nginx部署转flv集成

项目实际使用并测试经正式使用无问题,有问题欢迎评论留言

核心后台java代码:

try {// FFmpeg命令String command = "ffmpeg -re -i my_video.mp4 -c copy -f flv rtmp://localhost:1935/live/mystream";// 执行命令Process process = Runtime.getRuntime().exec(command);// 获取命令输出流InputStream inputStream = process.getInputStream();BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));// 打印命令输出String line;while ((line = reader.readLine()) != null) {System.out.println(line);}// 等待命令执行完成int exitCode = process.waitFor();System.out.println("Exit code: " + exitCode);} catch (IOException | InterruptedException e) {e.printStackTrace();}

命令调用成功

资源下载地址