Replies: 5 comments 3 replies
-
Without formatting the config is a little hard to read. Is the |
Beta Was this translation helpful? Give feedback.
-
Thank you John for your help but as yet I have not had time to try what you have suggested. Hopefully I'll be able to try tonight.
I am using Windows 10 using WSL so I could install Docker. I have to say that I tried Frigate also and I had similar issues with that also on the same machine.
Do you think I would be better off using a PC running Ubuntu only?
Thanks,
Sam
Sent from Outlook for Android<https://aka.ms/AAb9ysg>
…________________________________
From: john- ***@***.***>
Sent: Tuesday, February 11, 2025 12:25:05 AM
To: roflcoopter/viseron ***@***.***>
Cc: Getz007 ***@***.***>; Author ***@***.***>
Subject: Re: [roflcoopter/viseron] Waiting for cameras to register (Discussion #908)
Regarding your docker compose file, you are showing Windows paths. Are you using Windows? I don't think Windows is supported.
—
Reply to this email directly, view it on GitHub<#908 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AG6XKZZACE6BOOQVM632M6L2PCSDDAVCNFSM6AAAAABWZUBEYKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMJRHE2TKNQ>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Nothing I have seen indicates Viseron is expected to work (or supported) on Windows. Aren't there Windows based solutions for this kind of thing or do none of those work for you either? |
Beta Was this translation helpful? Give feedback.
-
Hi John
I have only just started looking for something but I like the idea of open source solutions.
The two cameras I have were given to me and like I said they are new but the technology is from the early 2010s.
They come with software that records when motion is detected but it's clunky and unreliable.
I have set them up on my home network and as I have a fixed IP address I can see them when I am away from home.
Also, they have inbuilt web server interfaces so I can configure them via Chrome.
I have set them up to send images via email which is a feature of the web interface they have.
I will play around a bit more with Viseron on my Win 10 machine following your suggestions and if unsuccessful I will set up Ubuntu on spare a machine I have and see how that goes. Frigate didn't work either.
I'll let you know how I get on when I have some good time.
Thanks
Sam
…________________________________
From: john- ***@***.***>
Sent: Wednesday, 12 February 2025 11:42 AM
To: roflcoopter/viseron ***@***.***>
Cc: Getz007 ***@***.***>; Author ***@***.***>
Subject: Re: [roflcoopter/viseron] Waiting for cameras to register (Discussion #908)
Nothing I have seen indicates Viseron is expected to work (or supported) on Windows.
Aren't there Windows based solutions for this kind of thing or do none of those work for you either?
—
Reply to this email directly, view it on GitHub<#908 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AG6XKZ3E7F3PVZC75GDEUVD2PKKG7AVCNFSM6AAAAABWZUBEYKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTEMJVGY4TSMI>.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
-
What do the logs say? I would also suggest using the Edit: John is correct in that Windows is not supported, but running it under WSL should work i believe |
Beta Was this translation helpful? Give feedback.
-
_ have two IP Cameras that stream in Chrome_and VLC but won't show up in Viseron. I get "Waiting for cameras to register".
Here is my Docker compose file...
version: "3.8"
services:
viseron:
container_name: viseron
image: roflcoopter/viseron:latest
restart: always
network_mode: host
volumes:
- C:/Users/dajes/docker/Viseron/recordings:/recordings
- C:/Users/dajes/docker/Viseron/config:/config
- /etc/localtime:/etc/localtime:ro
ports:
- "8891:8888"
environment:
- TZ=Australia/Sydney
- CAMERA_RTSP_URL=http://admin:[email protected]:1026/video.cgi
networks:
viseron_network:
driver: bridge
And here is my config file...
ffmpeg:
camera:
camera_1:
name: Front Door
host: 192.168.1.66
port: 1026
path: /video.cgi
username: "admin"
password: "123456"
input_args:
- "-i"
- "http://admin:[email protected]:1026/video.cgi"
- "-rw_timeout"
- "30000000"
- "-f"
- "mjpeg"
- "-protocol_whitelist"
- "file,http,https,tcp,tls"
codec: mjpeg
darknet:
object_detector:
cameras:
camera_1:
fps: 1
scan_on_motion_only: false
labels:
- label: person
confidence: 0.75
trigger_recorder: true
mog2:
motion_detector:
cameras:
camera_1:
fps: 1
nvr:
camera_1:
Can you please give me some guidance....I have looked everywhere on the internet and I can't find any more info...
Thanks
Sam
Beta Was this translation helpful? Give feedback.
All reactions