'RTSP streaming using node js?
I am using node-rtsp-stream package to run rtsp streaming,How can i implement and callback it in mvc structure //Controller
var RTSP = require('./models/rtsp.js');
var startRTSP = function startRTSP(queryData) {
console.log("startRTSP enterred******************")
console.log("queryData : "+JSON.stringify(queryData))
stream = new Stream({
name: 'name',
streamUrl: 'rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov',
wsPort: 9999
});
};
//models
router.get('/', function(req,res){
RTSP.startRTSP(req.body);
res.send("SUCCESS")
})
// Views
$.ajax({
url:'/',
type:'POST',
cache:false,
success:function(data){
console.log("RTSP Result : "+JSON.stringify(data)
var canvas = document.getElementById('rtspvt');
var ws = new WebSocket("ws://localhost:9999")
var player = new jsmpeg(ws, {canvas:canvas, autoplay:true,audio:false,loop: true});
}
});
Solution 1:[1]
install ffmpeg globally in your system first.
And import ffmpeg npm package let ffmpeg = require('ffmpeg');
now try to stream
stream = new Stream({
name: "name",
streamUrl: url, // rtsp url
wsPort: port, // ws port
ffmpegOptions: { // options ffmpeg flags
'-stats': '', // an option with no neccessary value uses a blank string
'-r': 30 // options with required values specify the value after the key
}
})
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Zoe stands with Ukraine |