Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Blue Iris
#41
I have EdgeRouter Lite. Not sure what the difference is, though.
------------------------------------
Some of my devices: Sonos, Aeotec zWave, Nest, Rain8Net, Various H/T
What's next: CQC-Voice, Brultech GEM
My vlogs: https://www.youtube.com/c/IVBsHomeAutomation
Reply
#42
Dragging up an older thread.

I am playing with BI again, maybe with the possibility of a driver but it has to do what I want.

I was playing around with the demp version and CQC and I want to get the live camera view into CQC. There is a mjpg stream available form the BI server but IE wants to save it and not display it (FF & chrome will display the image nicely).

I can get a snapshot that updates every two seconds in as a thumbnail for every camera easily enough.

Has anyone managed to get a BI camera image into the CQC IV yet? If so what is the URL you are using or how are you doing it.

Dean - need that rtsp widget I think to do this right.
Mykel Koblenz
Illawarra Smart Home
Reply
#43
I'm using this web page that a friend helped me with last summer (it's in the HTMLRoot folder).  It's not ideal in that I can only get about 2 frames per second, but it's better than nothing.

Code:
<html>
    <head>
        <style>
            * {
                padding: 0;
                margin:0;
                background-color: rgb(45, 45, 45)
            }
            img {
                height: 100%;
            }
            body {
                overflow: hidden;
            }
        </style>
    </head>
    <body>
        <img id="camera"/>
        <script>
            var camera = document.URL.split("?")[1];
            var image = document.getElementById("camera");
            function refreshImage() {
                var date = new Date();
                image.src = "http://<BI server name or IP>/image/" + camera + "?time=" + date.getTime();
            }
            refreshImage();
                setInterval(refreshImage, 600);
        </script>
    </body>
</html>

I use this with a web image control, and modify the URL accordingly for each of my nine cameras.
Reply
#44
There is a widget that can do the same thing now - you point it at the jpg image and set the refresh to what ever time value you want - mines at 2 seconds - that may have to be how I do it, just a bit faster on the popup when viewing it.
Mykel Koblenz
Illawarra Smart Home
Reply
#45
That's the one he mentioned, the Web Image widget.
Dean Roddey
Explorans limites defectum
Reply
#46
Not sure if this helps, but this is what I use in CQC for viewing BI v4.  It displays at a good frame rate in a 650x450 web browser widget in CQC.  This files are on the BI server in the www folder and CQC points to the jpegpull3.htm.


Attached Files
.zip   jpegpull3.zip (Size: 67.61 KB / Downloads: 9)
Reply
#47
Here is a link to a much improved browser based viewer called UI2 that a Blue Iris user developed. I have not had the time to try and integrate this with CQC, might not even make sense but sharing in case it is of interest to others.  It offers a fair amount of configuration options for how things are displayed

Also learned things in the message thread along the way such as the ability to set up groups in Blue Iris and the ability to specify the monitor resolution that the group will be displayed on, supposed to improve the image quality of the cameras displayed in the group. You do this by selecting the group you want to configure at the bottom left of the main blue iris camera screen and then click on the gear icon.  You will have an option to set the monitor resolution.

-Ben
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Lowes Iris and ZWave? jkmonroe 3 3,466 01-19-2014, 06:18 PM
Last Post: jkmonroe
  IRIS Home Automation products ellisr63 2 3,285 09-12-2012, 11:59 AM
Last Post: anogee

Forum Jump:


Users browsing this thread: 1 Guest(s)