blkdrgn808
n3wb
- Aug 21, 2015
- 5
- 0
I still can't figure it out. I can't seem to drag it over to the left. :redface-new:
Installation Instructions
The zip contains a lot of files. Simply extract all of these into the "www" folder in your Blue Iris install. For basic usage, load the "ui2.htm" page:
http://localhost/ui2.htm - You will probably need to modify the URL to point at your Blue Iris machine.
Press F11 to load full-screen mode, if desired.
I still can't figure it out. I can't seem to drag it over to the left. :redface-new: View attachment 7018
You're not trying anymore...are you.
Not easily. The best way to do what you want would probably be to use Blue Iris itself and not a web page. You can detach camera windows from the main program and create whatever arrangements you like on multiple monitors.
Alternatively, you can assign groups to your cameras in Blue Iris and then load the different groups in UI2.
To aid in loading the groups in UI2, you may want to be able to specify the group name in a parameter sent in the URL, so that you could make multiple bookmarks for the UI2 page, each configured to open a different camera group. First, you would need to create a file named ui2-local-overrides.js in the www/ui2/ folder.
Then paste inside it this code:
Code:var params = {}; window.location.search.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { params[key] = value; }); if (typeof params['group'] != 'undefined' && params['group'] != '') { OverrideDefaultSetting("ui2_defaultCameraGroupId", params['group'], true, true, 0); }
After doing this, you can load ui2 with a URL such as http://x.x.x.x/ui2.htm?group=groupname
Keyboard control question. I understand the keypad cursor arrow keys for pan control. The +/- keys seem to do digital zoom. Is there keyboard control for optical zoom? I tried shift key + other keys and it did not seem to work.
Thanks,
Tom
This one might be a real problem. If I display the All Cameras group I can see all 10 of my cameras. The first 2 rows have 3 cameras and the last 4 cameras. When I click on the small video it opens up the camera video for the next camera to the right of where I clicked. I can also click in the black area between videos and it opens up the camera to the right of my selection. I assume it's related to the unequal number of cameras in each row and it's somehow causing the clickable area calculation to be incorrect.
Not sure if it's fixable but I thought I should mention it. My other option is to buy 2 more cameras so each row is equal.
ver. 0.9.5
Windows 10
Chrome 47.0.2526.106 m
Thanks,
Tom
Bingo! I added two cameras recently. I will remember to clear the browser cache before posting again.
Thanks,
Tom
Did you just add a camera? Clear your browser catch and try again...
Question, is there a way to use URL to load a specific camera full screen.
For instance:
Http://serverort/ui2.htm?cam=camerashortname&full screen=1
Those mods you had me add to the override file for group and full screen work beautifully!
$(function()
{
var params = {}; window.location.search.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { params[key] = value; });
if (typeof params['cam'] != 'undefined' && params['cam'] != ' ')
{
// Override the StartRefresh method to add new functionality after UI2 fully loads.
var oldStartRefresh = StartRefresh;
StartRefresh = function()
{
var camData = GetCameraWithId(params['cam']);
if (camData != null)
ImgClick_Camera(camData);
oldStartRefresh();
};
}
if (typeof params['fullscreen'] != 'undefined' && params['fullscreen'] == '1')
{
$("#layoutleft").css("width", "0px");
resized();
}
});
http://server:port/ui2.htm?cam=camerashortname&fullscreen=1
I can't say thank you enough