Full ALPR Database System for Blue Iris!

I was just looking at my and realized the database hasn't update in a month. I'll take a look at it... I think the format from Blue Iris might have changed? There messages are still going in but it is complaining about the key I think
Check the API key didn't accidentally get reset. Can you give us the exact error message from the ALPR DB logs?
 
Error processing request: SyntaxError: Unexpected token ',', ...""ai_dump":, "Image":"... is not valid JSON
Error processing request: SyntaxError: Unexpected token ',', ...""ai_dump":, "Image":"... is not valid JSON
Error processing request: SyntaxError: Unexpected token ',', ...""ai_dump":, "Image":"... is not valid JSON
 
So I ran the database command listed above...

Still didn't work.

I ended up having to change my Blue Iris HTTP alert POST body from:

{"ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "timestamp":"&ALERT_TIME"}

To:

{"plate_number":"&PLATE", "Image":"&ALERT_JPEG", "camera":"&CAM", "timestamp":"&ALERT_TIME"}

Not quite sure what is up. At some point I moved Codeproject to CUDA and maybe Mike's ALPR 11...
 
So I ran the database command listed above...

Still didn't work.

I ended up having to change my Blue Iris HTTP alert POST body from:

{"ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "timestamp":"&ALERT_TIME"}

To:

{"plate_number":"&PLATE", "Image":"&ALERT_JPEG", "camera":"&CAM", "timestamp":"&ALERT_TIME"}
I'm using:

{ "ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH": "&ALERT_PATH", "ALERT_CLIP": "&ALERT_CLIP", "timestamp":"&ALERT_TIME" }

and it's been working fine through the 5.x to 6.x transition, once I checked all the other required boxes.
 
I'm using:

{ "ai_dump":&JSON, "Image":"&ALERT_JPEG", "camera":"&CAM", "ALERT_PATH": "&ALERT_PATH", "ALERT_CLIP": "&ALERT_CLIP", "timestamp":"&ALERT_TIME" }

and it's been working fine through the 5.x to 6.x transition, once I checked all the other required boxes.
Yeah, I am not sure why the ai_dump stopped working for me. I cloned a camera and one is working with Codeproject and the second ALPR one is working with working with the Blue Iris AI. Both are showing up with that change.
 
Yeah, I am not sure why the ai_dump stopped working for me. I cloned a camera and one is working with Codeproject and the second ALPR one is working with working with the Blue Iris AI. Both are showing up with that change.

You can try expanding the macro in BI and see what it does.

 
Yeah, I am not sure why the ai_dump stopped working for me. I cloned a camera and one is working with Codeproject and the second ALPR one is working with working with the Blue Iris AI. Both are showing up with that change.

Run
sudo docker ps -a

To get the Container:ID of postgres:13

Then
sudo docker exec -it Container:ID bash

Then Try below commands.