当前位置:   article > 正文

ffmpeg使用GPU编解码,实现多路推流_多路视频流 gpu切换解码

多路视频流 gpu切换解码

环境配置:[

参考博客地址

环境配置问题:

环境配置分为两个部分:
  • 1
  1. 安装ffnvcodec
    结合自己的cuda driver版本去github上下载对应的版本 make + make install
  2. ffmpeg安装:
    下载ffmpeg项目源码,在其文件夹中运行 ./configure
./configure --enable-gpl --enable-version3 --enable-nonfree --enable-shared --enable-ffmpeg --enable-ffplay --enable-ffprobe --enable-ffserver --enable-libx264 --enable-nvenc --enable-cuda --enable-cuvid --enable-libnpp --extra-cflags=-I/usr/local/cuda/include --extra-ldflags=-L/usr/local/cuda/lib64
  • 1
然后编译 sudo make + sudo make install
  • 1

打开流媒体服务器easydarwin

在这里插入图片描述

进行推流

该命令可以将一个视频推20路rtsp流
在其中-rtsp_transport tcp 设置实效
且采取gpu进行编解码同时在本机上只能同时跑两条命令,多的会终止

ffmpeg -re -stream_loop -1 -hwaccel cuvid -vcodec h264_cuvid -i east_mod.mp4 -vcodec h264_nvenc -map 0 -f tee '[f=rtsp]rtsp://localhost/east5 | [f=rtsp]rtsp://localhost/east1 | [f=rtsp]rtsp://localhost/east2 | [f=rtsp]rtsp://localhost/east3 | [f=rtsp]rtsp://localhost/east4 | [f=rtsp]rtsp://localhost/east6| [f=rtsp]rtsp://localhost/east7| [f=rtsp]rtsp://localhost/east8| [f=rtsp]rtsp://localhost/east9| [f=rtsp]rtsp://localhost/east10| [f=rtsp]rtsp://localhost/east11 | [f=rtsp]rtsp://localhost/east12 | [f=rtsp]rtsp://localhost/east13 | [f=rtsp]rtsp://localhost/east14 | [f=rtsp]rtsp://localhost/east15 | [f=rtsp]rtsp://localhost/east16| [f=rtsp]rtsp://localhost/east17| [f=rtsp]rtsp://localhost/east18| [f=rtsp]rtsp://localhost/east19| [f=rtsp]rtsp://localhost/east20'
  • 1

查看推流情况

在这里插入图片描述
在这里插入图片描述
查看显卡使用情况
nvidia-smi
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/1015263
推荐阅读
相关标签
  

闽ICP备14008679号