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

发布时间:2023年12月20日

海康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();
        }

命令调用成功

资源下载地址

文章来源:https://blog.csdn.net/wogoshu1/article/details/135079378
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。