在linux上使用Motion,每個網絡攝像頭都在其自己的端口上作爲流提供服務。 我現在想要使用Node.js提供所有在同一端口上的流。通過Node.js代理管理MJPEG流
- 編輯:此解決方案現在工作。我需要得到從原來的MJPEG流的邊界線(這是「BoundaryString」在我的運動配置)
app.get('/motion', function(req, res) {
var boundary = "BoundaryString";
var options = {
// host to forward to
host: '192.168.1.2',
// port to forward to
port: 8302,
// path to forward to
path: '/',
// request method
method: 'GET',
// headers to send
headers: req.headers
};
var creq = http.request(options, function(cres) {
res.setHeader('Content-Type', 'multipart/x-mixed-replace;boundary="' + boundary + '"');
res.setHeader('Connection', 'close');
res.setHeader('Pragma', 'no-cache');
res.setHeader('Cache-Control', 'no-cache, private');
res.setHeader('Expires', 0);
res.setHeader('Max-Age', 0);
// wait for data
cres.on('data', function(chunk){
res.write(chunk);
});
cres.on('close', function(){
// closed, let's end client request as well
res.writeHead(cres.statusCode);
res.end();
});
}).on('error', function(e) {
// we got an error, return 500 error to client and log error
console.log(e.message);
res.writeHead(500);
res.end();
});
creq.end();
});
我認爲這在192.168.1.2:8302 MJPEG編碼流提供了AS /運動,但事實並非如此。 也許因爲它永遠不會結束,而這個代理例子並不是真正的流式例子嗎?
你可以看看使用nginx代替。 – david
它需要成爲一個節點解決方案 – skerit