summaryrefslogtreecommitdiff
path: root/node-mjpeg-proxy.js
blob: 84f6a070b86c025c1ef4b63fbaef3db25fd25bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**************************
TODO:
1. better passing of the headers
2. Make in modular
3. Write it modular so it can be dynamically set for cam creds
**************************/

var http = require('http');
var sys = require('sys');
// port of the cam
var cam = http.createClient(80, '192.168.1.186');
var allHttpClient = [];
// Starting the stream on the cam
var request = cam.request('GET', '/axis-cgi/mjpg/video.cgi?fps=5',
  {'host': '192.168.1.186',
   'Authorization': "Basic ZnFubWFveGJtb3A6MTAyMzc3"});
request.end();
request.on('response', function (response) {
  response.setEncoding('binary');
  response.on('data', function (chunk) {
      
      for(i=0; i < allHttpClient.length; i++)
      {       
       allHttpClient[i].write(chunk, 'binary');
      }  
      
  });  
  
});
var testServer = http.createServer();

testServer.on('request', function (req, res){
	res.writeHead(200, {"cache-control":"no-cache","pragma":"no-cache","expires":"Thu, 01 Dec 1994 16:00:00 GMT","content-type":"multipart/x-mixed-replace; boundary=myboundary"});
	allHttpClient.push(res);
});

testServer.listen(5080, "0.0.0.0");
sys.puts('Server started on port 5080');



























/*************************
DEPRECATED SHIT
*************************/
/******** READ AN IMAGE AND SEND IT ON CONNECTION *********/
//var image = fs.readFileSync('/home/prene/Desktop/hotmail.png', 'binary', function(err, data){
//		sys.puts("yep gone through");
//		if(err) throw err;
//        
//		return data;
//       });

//var server = http.createServer(function (req, res) {

//       res.writeHead(200, { "Content-Type": "text/jpg"
//                          , "Content-Length": image.length
//                          });
//     
//       res.end(image, 'binary');

//  
//}).listen(7878, "0.0.0.0");

/**** // *******/


/************ STORE ALL SOCKETS CONNECTING *****************/

//sockets = [];
// 

//net.createServer(function (socket) {

//  socket.setEncoding("utf8");
//  socket.addListener("connect", function () {
//    console.log("Connected");
//	
//  });

//  socket.addListener("end", function () {
//    socket.end();
//    
//  });

//  sockets.push(socket);

//}).listen(port, "0.0.0.0");
//sys.puts("Server TCP listening on 127.0.0.1 on port: " + port);

/************ // ********/