Hello all... Happy Friday First time poster here.
I am using octoprint under openmediavault's docker demon in an Atom D525 PC
My problem is similar to Webcam not working?
However, I am sure I have jpg_streamer working. I opened the container's 8080 port and can stream with this URL
http://myomv.local:8080/?action=stream -> shows my webcam at 640x480 with very high FPS
When I go to:
http://myomv.local:5000/webcam/?action=stream
I get "404 Not found"
And in my octoprint container log, I find:
2021-04-16 09:54:11,268 - tornado.access - WARNING - 404 GET /webcam/?action=stream&1618566856379 (10.0.0.37) 17.12ms
I wish I could see the haproxy log, but in the container console, I can't find /var/log/haproxy.log
This is my docker-compose.yml
version: '2.4'
services:
octoprint:
image: octoprint/octoprint
restart: always
ports:
- 5000:5000
- 8080:8080
devices:
- /dev/ttyUSB0:/dev/ttyACM0
- /dev/video0:/dev/video0
volumes:
- octoprint:/octoprint
# uncomment the lines below to ensure camera streaming is enabled when
# you add a video device
environment:
- ENABLE_MJPG_STREAMER=true
volumes:
octoprint: