BP2008,
Thanks for the quick turnaround. The new version fixed the errors but when I have an alert it does not Auto-Maximize.
Thanks
Mike
Noted. I will fix soon. Maybe tomorrow.
BP2008,
Thanks for the quick turnaround. The new version fixed the errors but when I have an alert it does not Auto-Maximize.
Thanks
Mike
I just loaded UI3-174 all back to normal. Thanks again for all your hard work.Ack. I wrote the same problem twice in a single week. I am so embarrassed now. Will be fixed in UI3-174.
bp2008,I'll see about making it happen! Follow this issue if you want to keep track of when this is completed.
bp2008,@MikeLud1
Version 178
- Removed setting "Preview clips at native resolution" because it didn't work as intended.
- Alerts with a Hi-res JPEG available are now previewed at native resolution in the mouseover popup and in the alert properties dialog.
- Added setting "No preview animation for alerts with Hi-res JPEG" so that deepstack tags can be inspected in mouseover popups without having to disable the preview animations globally.
- Added settings to configure clip preview speed and number of frames:
I had this also on Windows. Not sure exactly what I did to fix it but went back into the BI and reset the group settingsOk, I was running Ubunto Stretch on my Pi 3 and for some reason, I quit getting sound when running UI3 in the browser (sound works with everything else in the browser). Knowing that my version of Ubunto was old, I figured I'd just go to the latest Pi version and see if that, alone, would fix the sound. Many hours later (slow slow slow connection) and it was up and running. Yep, sound works.
Now I have a new problem (maybe an older one too, but the last I looked it was ok). When I select a cam to go full frame, it always full frames the wrong cam. I've tried everything I can think with no good results. This works correctly on my three tablets and our computers, so... I must be missing something with Ubunto. Can anyone running linux give me a clue?
Ok, I was running Ubunto Stretch on my Pi 3 and for some reason, I quit getting sound when running UI3 in the browser (sound works with everything else in the browser). Knowing that my version of Ubunto was old, I figured I'd just go to the latest Pi version and see if that, alone, would fix the sound. Many hours later (slow slow slow connection) and it was up and running. Yep, sound works.
Now I have a new problem (maybe an older one too, but the last I looked it was ok). When I select a cam to go full frame, it always full frames the wrong cam. I've tried everything I can think with no good results. This works correctly on my three tablets and our computers, so... I must be missing something with Ubunto. Can anyone running linux give me a clue?
FLAC
audio support, enabled by default, but in some browsers it fails to decode and this wasn't handled properly until UI3-169 which should correctly reset your audio codec to old-reliable ulaw
.New version of Chromium is JPEG only (no sound) but cams open up properly.
ui3.js
file in your Blue Iris 5/www/ui3
folder and go to about line 283 where it saysfunction detectWebGLContext()
{
var canvas = document.createElement("canvas");
var gl = canvas.getContext("webgl")
|| canvas.getContext("experimental-webgl");
return gl && gl instanceof WebGLRenderingContext;
}
return true;
at the beginning of that function like this.function detectWebGLContext()
{
return true;
var canvas = document.createElement("canvas");
var gl = canvas.getContext("webgl")
|| canvas.getContext("experimental-webgl");
return gl && gl instanceof WebGLRenderingContext;
}