LinuxでMotionを使用すると、すべてのWebカメラが独自のポートでストリームとして提供されます。Node.jsを使用して、これらのストリームをすべて同じポートで提供したいと思います。
- 編集:このソリューションが機能するようになりました。元の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ストリームを/motionとして提供すると思いますが、そうではありません。おそらくそれが終わらないためであり、このプロキシの例は実際にはストリーミングの例ではありませんでしたか?