我尝试使用MEAN堆栈在rtsp上获取视频流,但是当我在server.js文件中添加此代码时,我发现错误:“spawn ffmpeg ENOENT”。也许我忘了安装一些lib或者什么?请帮我!码:
app.get('/', function (req, res) {
Stream = require('node-rtsp-stream');
stream = new Stream({
name: 'name',
streamUrl: 'rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov',
wsPort: 9999
});
res.send(stream);
console.log('9999')
});
好吧,你需要先在你的Ubuntu机器上安装FFmpeg。
sudo apt install FFmpeg
这将安装最新版本,我也看到你试图发送流作为响应。用于获取RTSP源的模块将其转换为WebSocket连接。所以你需要让客户端连接到它。
希望这有帮助!