USB相机 RTSP视频推流
2023-12-20 本文已影响0人
五帝星一
rtsp服务器
-
方案一 (EasyDarwin)
下载地址:Releases · EasyDarwin/EasyDarwin (github.com) -
方案二(mediamtx)
下载地址:Releases · bluenviron/mediamtx (github.com)
# TCP推流
ffmpeg -i /dev/video0 -s 1920*1080 -vcodec libx264 -preset ultrafast -an -rtsp_transport tcp -f rtsp rtsp://192.168.144.3:8554/majin
#UDP推流
ffmpeg -i /dev/video0 -s 1920*1080 -vcodec libx264 -preset ultrafast -an -f rtsp rtsp://192.168.144.3:8554/majin
#windows 桌面推流未测试
ffmpeg -f gdigrab -framerate 30 -i desktop -c:v libx264 -bf 0 -f rtsp -rtsp_transport udp rtsp://localhost:8554/desktop