EmpireTech IPC-Color4K-X is an amazing weather cam

bp2008

Staff member
Joined
Mar 10, 2014
Messages
12,666
Reaction score
14,007
Location
USA


I recently purchased an EmpireTech IPC-Color4K-X with a 2.8mm lens from @EMPIRETECANDY. This model is also known as Dahua DH-IPC-HFW5849T1-ASE-LED. I installed it not as a security cam, but as a weather cam. The high resolution and large sensor make for great captures both day and night.

The video above is a timelapse created from about 9 days of source material (snapshots taken at a 10 minute interval).

In my opinion, the low-light quality is better than the older 2MP full color starlight series.

As this camera was intended for 24/7 color capture, I believe its IR filter is not mechanically movable so the camera cannot be used with IR lighting. The integrated LEDs emit warm white light, but I have them turned off.

Because I intend this camera to observe the weather, I turned off the built-in LEDs and maximized the exposure and gain range to allow it to produce images that are as bright and detailed as possible at night. These settings are unrealistic for traditional security purposes, as any moving object at night is just a blur at 1/3 second exposure time. I also reduced Sharpness to 25 from its default of 50, because I consider the default to be a bit too oversharpened.

To improve daytime capture quality, I enabled Backlight mode "SSA" (Smart Scene Adaptive) during the day. I found that this mode improves capture quality substantially when large amounts of sky are in view. However "SSA" mode limits the maximum exposure time to 1/30 sec. With backlight mode "off", the maximum exposure time is ten times longer at 1/3 sec, making it much better suited for low-light capture. Therefore I have configured separate Day and Night profiles which are being toggled 1 hour before sunrise and 1 hour after sunset. This camera does not support intelligently switching between profiles, so I've configured Blue Iris software to do the profile switch using Dahua's standard CGI API methods over HTTP.

Day Profile (1 hour before sunrise to 1 hour after sunset)
  • Backlight mode: SSA
  • Shutter: 0 - 33.33 ms
  • Gain: 0 - 100
  • Sharpness: 25

Night Profile (1 hour after sunset to 1 hour before sunrise)
  • Backlight mode: Off
  • Shutter: 1/3 sec (333.33ms)
  • Gain: 0 - 100
  • Sharpness: 25
 

Cameraguy

Known around here
Joined
Feb 15, 2017
Messages
1,485
Reaction score
1,122


I recently purchased an EmpireTech IPC-Color4K-X with a 2.8mm lens from @EMPIRETECANDY. This model is also known as Dahua DH-IPC-HFW5849T1-ASE-LED. I installed it not as a security cam, but as a weather cam. The high resolution and large sensor make for great captures both day and night.

The video above is a timelapse created from about 9 days of source material (snapshots taken at a 10 minute interval).

In my opinion, the low-light quality is better than the older 2MP full color starlight series.

As this camera was intended for 24/7 color capture, I believe its IR filter is not mechanically movable so the camera cannot be used with IR lighting. The integrated LEDs emit warm white light, but I have them turned off.

Because I intend this camera to observe the weather, I turned off the built-in LEDs and maximized the exposure and gain range to allow it to produce images that are as bright and detailed as possible at night. These settings are unrealistic for traditional security purposes, as any moving object at night is just a blur at 1/3 second exposure time. I also reduced Sharpness to 25 from its default of 50, because I consider the default to be a bit too oversharpened.

To improve daytime capture quality, I enabled Backlight mode "SSA" (Smart Scene Adaptive) during the day. I found that this mode improves capture quality substantially when large amounts of sky are in view. However "SSA" mode limits the maximum exposure time to 1/30 sec. With backlight mode "off", the maximum exposure time is ten times longer at 1/3 sec, making it much better suited for low-light capture. Therefore I have configured separate Day and Night profiles which are being toggled 1 hour before sunrise and 1 hour after sunset. This camera does not support intelligently switching between profiles, so I've configured Blue Iris software to do the profile switch using Dahua's standard CGI API methods over HTTP.

Day Profile (1 hour before sunrise to 1 hour after sunset)
  • Backlight mode: SSA
  • Shutter: 0 - 33.33 ms
  • Gain: 0 - 100
  • Sharpness: 25

Night Profile (1 hour after sunset to 1 hour before sunrise)
  • Backlight mode: Off
  • Shutter: 1/3 sec (333.33ms)
  • Gain: 0 - 100
  • Sharpness: 25
Awesome I'll try some of these settings. Thanks
 

bradner

Getting comfortable
Joined
Aug 15, 2019
Messages
426
Reaction score
757
Location
PNW

The video above is a timelapse created from about 9 days of source material (snapshots taken at a 10 minute interval).
Hey Brian, was it easy to create the timelapse? I'd maybe like to try that with a couple of my cams in general. Thanks.
 

bp2008

Staff member
Joined
Mar 10, 2014
Messages
12,666
Reaction score
14,007
Location
USA
Creating a timelapse can be a bit frustrating without the right software.

I had Blue Iris upload a jpeg snapshot every 10 minutes to an FTP server.

Then I had to write a small script to rename all the files like this, named with a 6 digit incrementing number.

1638048516287.png
...

Then I had ffmpeg produce a video from those frames.

Code:
ffmpeg -r 30 -i "%06d.jpg" -vcodec libx264 -crf 18 -preset medium -movflags faststart WeatherTimelapse.mp4
Breaking down that command:
  • -r 30 specifies 30 FPS frame rate
  • -i "%06d.jpg" specifies the input file(s) match the pattern of 6 numerals with a jpg extension. There may be other input arguments that would just load the images in alphabetical order, but I didn't find that in my searches.
  • -vcodec libx264 specifies to use H.264 codec
  • -crf 18 says use constant quality 18. This is rather high quality, as the scale goes from 0 (lossless) to something like 51 (horrible quality). 18 is generally considered to be visually very close to lossless. Just 1280 frames with an original size of 1.28 GB ended up producing a 737 MB video. That is a bit rate of 140 Mbps, pretty insane, but Youtube would of course re-compress this video anyway to make it much more efficient for people to stream.
  • -preset medium says to use the x264 encoder's "medium" preset for encoding.
  • -movflags faststart says to make the mp4 file perform better for streaming. Does not really matter if you are going to upload to YouTube.
  • And finally the command ends with the output filename. ffmpeg learns you wanted the mp4 format
 

Staff Curtis

Young grasshopper
Joined
Sep 2, 2016
Messages
32
Reaction score
16
Location
Raleigh, NC
How quality is the video doing standard 4k/30fps? Based on your review, it should do excellent for night time security as well.
 

EMPIRETECANDY

IPCT Vendor
Joined
Nov 8, 2016
Messages
8,262
Reaction score
23,724
Location
HONGKONG

bp2008

Staff member
Joined
Mar 10, 2014
Messages
12,666
Reaction score
14,007
Location
USA
I only have this one Color4K-X and it isn't pointed in a direction that is useful for security. But I can change the shutter speed and take more snapshots.



----------------------------------------------------------------------------
1/3 shutter


----------------------------------------------------------------------------
1/30 shutter


----------------------------------------------------------------------------
1/60 shutter


----------------------------------------------------------------------------
1/120 shutter


----------------------------------------------------------------------------
Auto Exposure
 

Staff Curtis

Young grasshopper
Joined
Sep 2, 2016
Messages
32
Reaction score
16
Location
Raleigh, NC
I've still got a stack of cams I bought from you Andy. How much are you gonna hit me for one of these? I prefer turret if they have one coming soon let me know.
 

Staff Curtis

Young grasshopper
Joined
Sep 2, 2016
Messages
32
Reaction score
16
Location
Raleigh, NC
Thank you bp2008 for those snapshots. I'm redoing my Blue Iris hardware now as well. Looking for a deal on a threadripper since I have about 20 cams and I like to run 4k@30fps.
 

NightLife

Getting comfortable
Joined
Sep 10, 2021
Messages
490
Reaction score
1,096
Location
Canada
I wonder if neighbours ever say - hey, if you stream me the feed on that camera, I'll send you the stream from this camera. Seeing how the neighbour always has such a great overview of the other guy!
 

EMPIRETECANDY

IPCT Vendor
Joined
Nov 8, 2016
Messages
8,262
Reaction score
23,724
Location
HONGKONG
I've still got a stack of cams I bought from you Andy. How much are you gonna hit me for one of these? I prefer turret if they have one coming soon let me know.
The turret still no news right now, has plan on it, but when can make it and work great need bit time, at least wait to June i think. Turret will not be as strong as this bullet one.
 
Top