You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I feel like I'm missing something, so forgive me if this is obvious.
I have 2 cameras that I want to proxy. I tried creating a JSON file with their sources. When I run ./mjpeg-proxy --sources sources.json I see it starting, but nothing ever gets returned from the connections to localhost:8080/camera1 or localhost:8080/camera2:
chunker[/camera1]: serving from http://192.168.2.139/mjpg/1/video.mjpg
chunker[/camera2]: serving from http://192.168.2.139/mjpg/2/video.mjpg
server: starting on address :8080
pubsub[/camera1]: added subscriber [::1]:58014 (total=1)
chunker[/camera1]: connecting to http://192.168.2.139/mjpg/1/video.mjpg
chunker[/camera1]: started
In the browser, it just blocks like this forever:
If I hit my cameras (which work) I get back a response like this:
curl -I http://192.168.2.139/mjpg/2/video.mjpg
HTTP/1.0 200 OK
Cache-Control: no-cache
Pragma: no-cache
Expires: Thu, 01 Dec 1994 16:00:00 GMT
Connection: close
Content-Type: multipart/x-mixed-replace; boundary=--myboundary
What am I missing?
The text was updated successfully, but these errors were encountered:
You can check if it works correctly with the sources.json included in the repo. If that is working than it has some problems reading from the provided sources. To debug maybe try tcpdump to see the traffic or add some additional debugging to the receiver code.
I feel like I'm missing something, so forgive me if this is obvious.
I have 2 cameras that I want to proxy. I tried creating a JSON file with their sources. When I run
./mjpeg-proxy --sources sources.json
I see it starting, but nothing ever gets returned from the connections tolocalhost:8080/camera1
orlocalhost:8080/camera2
:In the browser, it just blocks like this forever:
If I hit my cameras (which work) I get back a response like this:
curl -I http://192.168.2.139/mjpg/2/video.mjpg HTTP/1.0 200 OK Cache-Control: no-cache Pragma: no-cache Expires: Thu, 01 Dec 1994 16:00:00 GMT Connection: close Content-Type: multipart/x-mixed-replace; boundary=--myboundary
What am I missing?
The text was updated successfully, but these errors were encountered: