笔记-使用ffmpeg产生rtsp视频流,然后用进行VLC播放
1.软件配置
1.1下载安装好ffmpeg
1.2使用EasyDarwin创建RTSP服务器
2.FFmpeg找本地摄像头名字
在cmd下输入:
cpp
ffmpeg -list_devices true -f dshow -i dummy
3.FFmpeg推流命令
cpp
ffmpeg -f dshow -i video="video 设备名字" -vcodec libx264 -preset:v ultrafast -tune:v zerolatency -rtsp_transport tcp -f rtsp 播放地址;
播放地址自己
rtsp://xxx.x.x.x/test
或
rtmp://xxx.x.x.x:8550/live/test(需要自己开启8550端口)
3.1使用VLC实现拉流