IPC-HDW5231R-Z Grey screen on recordings

rado stefano

Getting the hang of it
Joined
Mar 20, 2017
Messages
131
Reaction score
8
Location
Las Vegas
What is frustrating is some cameras work fine and some are not.
I notice the cameras that work for are showing 15fps in blue Iris "they are setup for 15 in the camera menu". The ones that show 30 fps show black playback. If I switch the extra only to h264 the playback is grayish and ghosted.
 
Last edited:

i286

n3wb
Joined
Aug 3, 2015
Messages
29
Reaction score
18
So, how to revert to 4.5.8.5 that is attached to this post (or any other version etc).

1. Easy way to backup, copy this text to a file that you will save as "BackupBI v1.10.cmd"
Code:
@echo off
REM ------------------------------------------------------------------------
REM BackupBI v1.10.CMD
REM
REM Version 1.10 - October 17, 2017
REM Removed FileVer.exe requirements, dont use to change between 32/64 bit Windows.
REM Complete overhaul of the operation of the script.
REM In current form this script only works with version 4.x.x.x Blue Iris
REM
REM Version 1.00 - August 2, 2012
REM Backs up all Blue Iris' Settings stored in the registry using
REM RegEdit.exe and renames the backup to 'BlueIris_v3.xx.xx.reg'. This
REM is the same as performing an Export/Backup Settings from within
REM BlueIris Options.
REM
REM History:
REM v1.00 - Initial release.
REM v1.10 - Removed FileVer requirements, complete script overhaul
REM
REM Compatible with Windows XP, Windows Vista, Windows 7
REM ------------------------------------------------------------------------

REM ---------------[ YOU CAN CHANGE THESE ]---------------

SET "DEST=%USERPROFILE%\Desktop\Blue Iris Backup"
mkdir "%DEST%" > NUL 2>&1

REM ------------------------------------------------------

SET KEY=NONE

REM Check if 32 bit
reg QUERY "HKLM\SOFTWARE\Wow6432Node\Perspective Software\Blue Iris\Registration" /ve > NUL 2>&1
if %ERRORLEVEL% == 0 (
     SET "KEY=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Perspective Software"
     SET "SOURCE=C:\\Program Files (x86)\\Blue Iris\\BlueIris.exe"
)

REM Check if 64 bit
reg QUERY "HKLM\SOFTWARE\Perspective Software\Blue Iris\Registration" /ve > NUL 2>&1
if %ERRORLEVEL% == 0 (
     SET "KEY=HKEY_LOCAL_MACHINE\SOFTWARE\Perspective Software"
     SET "SOURCE=C:\\Program Files\\Blue Iris 4\\BlueIris.exe"
)

if "%KEY%" == "NONE" (
    Echo. && Echo FATAL ERROR: Blue Iris is not installed or present in the Windows Registry
    Pause
    exit /b
)

REM Output the Blue Iris registry
REGEDIT /E:A "%DEST%\BlueIris.reg" "%KEY%"

REM Get BlueIris.exe vesion number
SET "WMICCommand=wmic datafile WHERE "name='%SOURCE%'" get version"
FOR /F "skip=1" %%X IN ('%WMICCommand%') DO (
    if not defined BI_VER (
        set "BI_VER=%%X"
    )
)

REM Do a rudimentary exists output registry file check
IF EXIST "%DEST%\BlueIris.reg" (
     MOVE /Y "%DEST%\BlueIris.reg" "%DEST%\BlueIris_v%BI_VER%.reg" > NUL
     echo. && echo Backup of Blue Iris version %BI_VER% is completed
     echo. && echo Backup location is "%DEST%\BlueIris_v%BI_VER%.reg"
) else (
     echo. && echo ERROR: BlueIris.reg is missing from %DEST%...
     echo. && echo Make sure to run BackupBI.cmd as Administrator.
)
pause
2. Then execute the batch. It will create you a folder on desktop called "Blue Iris Backup"
Inside this folder will be the saved registry from Blue Iris with the version.
Be aware if file exists, the batch will overwrite it.
NOTE: While I have absolute confidence in the script, please check the registry output file size is right. Mine is 2.7MB.
I don't want you to lose any settings before you uninstall

3. After backed up, open Blue Iris, from options de-activate the license, close Blue Iris
4. Uninstall Blue Iris as you do with any other program, remove settings and everything else it asks for
5. Reboot server OS at the end when uninstaller asks
6. Install Blue Iris 4.5.8.5 from my attachment in this post, dont select to Run Blue Iris at the end of install
7. From Desktop\Blue Iris Backup folder run the registry file you backed up earlier, this will completely restore your Blue Iris as it was before.
8. Open Blue Iris, if running as service previously you have to go to options and startup tab, tick run as service.

Congrats!

Ill try put some pics in the post about it after work tonight.
Take care
 

Attachments

Tinman

Known around here
Joined
Nov 2, 2015
Messages
1,209
Reaction score
1,476
Location
USA
Same results for me.....here are my cam settings. I have reported this to Ken as well.
I also should note that this is a Dahua IPC-HDW4231EM-AS that does this on mine.

 

Attachments

Last edited:

looney2ns

IPCT Contributor
Joined
Sep 25, 2016
Messages
15,606
Reaction score
22,833
Location
Evansville, In. USA
Or just install this: Blue Iris Update Helper (BiUpdateHelper)


So, how to revert to 4.5.8.5 that is attached to this post (or any other version etc).

1. Easy way to backup, copy this text to a file that you will save as "BackupBI v1.10.cmd"
Code:
@echo off
REM ------------------------------------------------------------------------
REM BackupBI v1.10.CMD
REM
REM Version 1.10 - October 17, 2017
REM Removed FileVer.exe requirements, dont use to change between 32/64 bit Windows.
REM Complete overhaul of the operation of the script.
REM In current form this script only works with version 4.x.x.x Blue Iris
REM
REM Version 1.00 - August 2, 2012
REM Backs up all Blue Iris' Settings stored in the registry using
REM RegEdit.exe and renames the backup to 'BlueIris_v3.xx.xx.reg'. This
REM is the same as performing an Export/Backup Settings from within
REM BlueIris Options.
REM
REM History:
REM v1.00 - Initial release.
REM v1.10 - Removed FileVer requirements, complete script overhaul
REM
REM Compatible with Windows XP, Windows Vista, Windows 7
REM ------------------------------------------------------------------------

REM ---------------[ YOU CAN CHANGE THESE ]---------------

SET "DEST=%USERPROFILE%\Desktop\Blue Iris Backup"
mkdir "%DEST%" > NUL 2>&1

REM ------------------------------------------------------

SET KEY=NONE

REM Check if 32 bit
reg QUERY "HKLM\SOFTWARE\Wow6432Node\Perspective Software\Blue Iris\Registration" /ve > NUL 2>&1
if %ERRORLEVEL% == 0 (
     SET "KEY=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Perspective Software"
     SET "SOURCE=C:\\Program Files (x86)\\Blue Iris\\BlueIris.exe"
)

REM Check if 64 bit
reg QUERY "HKLM\SOFTWARE\Perspective Software\Blue Iris\Registration" /ve > NUL 2>&1
if %ERRORLEVEL% == 0 (
     SET "KEY=HKEY_LOCAL_MACHINE\SOFTWARE\Perspective Software"
     SET "SOURCE=C:\\Program Files\\Blue Iris 4\\BlueIris.exe"
)

if "%KEY%" == "NONE" (
    Echo. && Echo FATAL ERROR: Blue Iris is not installed or present in the Windows Registry
    Pause
    exit /b
)

REM Output the Blue Iris registry
REGEDIT /E:A "%DEST%\BlueIris.reg" "%KEY%"

REM Get BlueIris.exe vesion number
SET "WMICCommand=wmic datafile WHERE "name='%SOURCE%'" get version"
FOR /F "skip=1" %%X IN ('%WMICCommand%') DO (
    if not defined BI_VER (
        set "BI_VER=%%X"
    )
)

REM Do a rudimentary exists output registry file check
IF EXIST "%DEST%\BlueIris.reg" (
     MOVE /Y "%DEST%\BlueIris.reg" "%DEST%\BlueIris_v%BI_VER%.reg" > NUL
     echo. && echo Backup of Blue Iris version %BI_VER% is completed
     echo. && echo Backup location is "%DEST%\BlueIris_v%BI_VER%.reg"
) else (
     echo. && echo ERROR: BlueIris.reg is missing from %DEST%...
     echo. && echo Make sure to run BackupBI.cmd as Administrator.
)
pause
2. Then execute the batch. It will create you a folder on desktop called "Blue Iris Backup"
Inside this folder will be the saved registry from Blue Iris with the version.
Be aware if file exists, the batch will overwrite it.
NOTE: While I have absolute confidence in the script, please check the registry output file size is right. Mine is 2.7MB.
I don't want you to lose any settings before you uninstall

3. After backed up, open Blue Iris, from options de-activate the license, close Blue Iris
4. Uninstall Blue Iris as you do with any other program, remove settings and everything else it asks for
5. Reboot server OS at the end when uninstaller asks
6. Install Blue Iris 4.5.8.5 from my attachment in this post, dont select to Run Blue Iris at the end of install
7. From Desktop\Blue Iris Backup folder run the registry file you backed up earlier, this will completely restore your Blue Iris as it was before.
8. Open Blue Iris, if running as service previously you have to go to options and startup tab, tick run as service.

Congrats!

Ill try put some pics in the post about it after work tonight.
Take care
 

RJ90210

n3wb
Joined
Jun 2, 2017
Messages
12
Reaction score
0
I have had the exact same issue (grey / black on said camera) and rolled back up 4.5.8.5 yesterday. Now it works again.
 

rra

n3wb
Joined
Jul 2, 2015
Messages
28
Reaction score
4
Location
Belgium
Set max bitrate to 2048 (Dahua menu) and take 265H . I have the same this setting solved my problem
 

Tinman

Known around here
Joined
Nov 2, 2015
Messages
1,209
Reaction score
1,476
Location
USA
4.6.4.1 is out on the website.

Blue Iris Updates

Is 4.6.4.1 the fix for this? Haven't heard from Ken in many days. Have you worked with Ken on this? JW.
I just reported to him the issue I was having with h.265. I did update mine and will try one of my cams on h.265 tomorrow during the day and see what happens. Ken did tell me this may help me on that issue.
 

rra

n3wb
Joined
Jul 2, 2015
Messages
28
Reaction score
4
Location
Belgium
i have release 4.6.3.0 x64 BI :wow: check for update now : your software is up to date
 

Tinman

Known around here
Joined
Nov 2, 2015
Messages
1,209
Reaction score
1,476
Location
USA
i have release 4.6.3.0 x64 BI :wow: check for update now : your software is up to date
mine did the same thing. You will need to download the update manually. I just re-enabled one of my cams to h.265 and will see how it goes today.
 

Philip Gonzales

Getting comfortable
Joined
Sep 20, 2017
Messages
697
Reaction score
551
Well the new version broke my other cameras :facepalm:. BI won't even connect to my other cameras unless I select Generic RTSP camera and even then I tried all the settings to get the audio working and no luck. Reverting back now.
 
Last edited:

Tinman

Known around here
Joined
Nov 2, 2015
Messages
1,209
Reaction score
1,476
Location
USA
So far my cam is recording fine now on h.265, since the update....will keep you posted.
 

Tinman

Known around here
Joined
Nov 2, 2015
Messages
1,209
Reaction score
1,476
Location
USA
Well I am confused on what is happening here....yes BI 4.6.4.1 now works using h.265 but I have lost all my space savings I was getting before. Maybe this is why it puked. I really am seeing no difference between h.265 vs h.264 at this time. In both cases I was running 6fps @ 2048
clip1.JPG clip2.JPG
 

Philip Gonzales

Getting comfortable
Joined
Sep 20, 2017
Messages
697
Reaction score
551
Well I am confused on what is happening here....yes BI 4.6.4.1 now works using h.265 but I have lost all my space savings I was getting before. Maybe this is why it puked. I really am seeing no difference between h.265 vs h.264 at this time. In both cases I was running 6fps @ 2048
View attachment 22785 View attachment 22786
Aren't you seeing about a 50% decrease now? What were you seeing before?
 
Top