weather cam recommendation

wcleme11

Getting the hang of it
Joined
Mar 30, 2017
Messages
62
Reaction score
51
Thanks for the tips @wxman . I will have plenty of terrain in the view as I'll mainly be looking out at the horizon and occasionally trying to spot wildlife out in the open space. It's tempting to go with the cheaper SD49225U as I really don't have any need for auto tracking in this location. The only thing I think may be useful is the image stabilization. I will be mounting it to the side of my house but its pretty common to have heavy wind here. So basically I'd be going for the 30x zoom and the image stabilization if I go with something like the SD59430U. Nearly double the cost of the SD49225U though :wow:
 

wxman

Pulling my weight
Joined
Feb 15, 2015
Messages
631
Reaction score
163
Location
Southern United States
Thanks for the tips @wxman . I will have plenty of terrain in the view as I'll mainly be looking out at the horizon and occasionally trying to spot wildlife out in the open space. It's tempting to go with the cheaper SD49225U as I really don't have any need for auto tracking in this location. The only thing I think may be useful is the image stabilization. I will be mounting it to the side of my house but its pretty common to have heavy wind here. So basically I'd be going for the 30x zoom and the image stabilization if I go with something like the SD59430U. Nearly double the cost of the SD49225U though :wow:
Anytime! Glad to help!

As far as wildlife goes, I have gotten some really good shots there with the Dahua. Although most of the time, I have to manually focus when zooming up close to wildlife. For some reason, when I zoom in on an animal, the auto focus likes to focus on the grass/trees behind the animal. In some cases, if I draw a "regional focus" box over just the animal, it will readjust and focus correctly on the animal. Sometimes even that doesn't work and I have to hold down on the "+" focus sign until it comes into focus. Sometimes this may take 20 seconds or more and many times the animal moves out of the picture before I can get the focus...but as long as they stay still long enough for me to get a focus, then I can get some fairly impressive shots...

A few examples....Again, I stress, you probably won't be able to just stick the cam up and start snapping shots like these...It takes a bit of effort and a lot of trial and error, but with patience and a little basic photography knowledge, this is some examples of what can be accomplished.


20170422_073201.JPG 20170501_101300.JPG
20170501_102841.JPG
20170501_143421.JPG
20170501_143828.JPG
20170503_101251.JPG
20170508_075703.JPG
20170514_084640.JPG

20170514_171406.JPG
20170506_171802.JPG

20170413_055230.JPG
 

hdo27

n3wb
Joined
Mar 31, 2017
Messages
14
Reaction score
4
I'm using the build-in Profile Time Schedule option. That makes it possible to use a separate Day and Night profile. So it's no Rocket Science ;)
Thanks. What i was refering to was how you manage to create the Youtube Live Stream out of the camera :)
I also noticed that you managed to add statistics to the stream (POS feature?).
 

beingaware

Pulling my weight
Joined
Mar 16, 2017
Messages
217
Reaction score
179
Location
Australia
Thanks. What i was refering to was how you manage to create the Youtube Live Stream out of the camera :)
I also noticed that you managed to add statistics to the stream (POS feature?).
FFMPEG.
Pretty much connect to the RTSP with FFMPEG and then forward the stream to youtube.

ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://admin:supersecretpassword@172.16.5.23:554/cam/realmonitor?channel=1subtype=0 -tune zerolatency -vcodec libx264 -t 12:00:00 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv youryoutubelivestreamurlkeyhere
 

Skipper-93

n3wb
Joined
Apr 7, 2017
Messages
15
Reaction score
11
Thanks. What i was refering to was how you manage to create the Youtube Live Stream out of the camera :)
I also noticed that you managed to add statistics to the stream (POS feature?).
Indeed like beingaware says with FFMPEG. This is my commandline:
ffmpeg.exe -rtsp_transport tcp -stimeout 3600000 -i "rtsp://username:yourpassword@192.168.1.xx/" -c:v copy -c:a aac -async 1 -f flv "rtmp://a.rtmp.youtube.com/live2/yourstreamkey"

For the overlay I'm using cURL. It is posting at this url (you must enable the Text overlay setting): http://192.168.1.xx/cgi-bin/configManager.cgi?action=setConfig&VideoWidget[0].CustomTitle[1].Text=Line1|Line2|Line3|Line4
 

hdo27

n3wb
Joined
Mar 31, 2017
Messages
14
Reaction score
4
Great! Thanks for the answers. FFMPEG and cURL then :)
 
Top