Dashticz IP Cameras - Features, Fixes & Updates

Dashticz, alternative dashboard based on HTML, CSS, jQuery

Moderators: leecollings, htilburgs, robgeerts

janumix
Posts: 21
Joined: Wednesday 06 November 2019 15:32
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by janumix »

Great !
Thank you.
User avatar
clinkadink
Posts: 417
Joined: Tuesday 31 December 2019 1:15
Target OS: Linux
Domoticz version: 2020.2
Location: Swindon, UK
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by clinkadink »

Please try the latest beta.

Sent from my HD1913 using Tapatalk

"UI is the saddle, the stirrups, & the reins. UX is the feeling you get being able to ride the horse."
janumix
Posts: 21
Joined: Wednesday 06 November 2019 15:32
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by janumix »

"Ghost" icons disappeared ! Thanks.
I can see that full-screen views are switching between cameras. How can I control it ?

BR
User avatar
HansieNL
Posts: 957
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by HansieNL »

janumix wrote: Monday 13 April 2020 0:15 "Ghost" icons disappeared ! Thanks.
I can see that full-screen views are switching between cameras. How can I control it ?

BR
There will be a handle at the bottom center of the screen, used to display the camera tray. When clicked any other cameras will be presented in the tray. If you click on them, it will update the fullscreen video stream.
Blah blah blah
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

Hi guys,

Any chance anyone knows how to rotate the camera image in html?

I have a foscam FI9961EP camera which can only flip and mirror but not rotate.

Thnx in advance!


Sent from my iPhone using Tapatalk
nfuse
Posts: 32
Joined: Thursday 26 March 2020 11:37
Target OS: -
Domoticz version:
Contact:

Re: Dashticz IP Cameras

Post by nfuse »

nfuse wrote: Tuesday 07 April 2020 11:16 nice work on the camera plugin i also try'd days to get the popup screen to work with iframe scaling but it was a pain and never workt the way i wanted it.

i only have a small problem (not a big one for me) but the focussed icons from dashtics are seeing true the popup when i click my camera picture.
i apply'd the latest beta but i cant figure it out.

here is an example:

Image

any ideas?
sorry for the late response but the problem has fixed with the latest beta stil no luck with the live stream but i keep trying thanks !
docker with sonos http api / mosquitto / zigbee2mqtt assistant / portainer / dashticz / nodeJS on windows with Zigbee2Mqtt, and some flask builds of my own
janumix
Posts: 21
Joined: Wednesday 06 November 2019 15:32
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by janumix »

HansieNL wrote: Monday 13 April 2020 6:29
janumix wrote: Monday 13 April 2020 0:15 "Ghost" icons disappeared ! Thanks.
I can see that full-screen views are switching between cameras. How can I control it ?

BR
There will be a handle at the bottom center of the screen, used to display the camera tray. When clicked any other cameras will be presented in the tray. If you click on them, it will update the fullscreen video stream.
There are 2 cases:
1. Using direct link to snapshots from cameras
2. Using links to cameras in domoticz.

Ad.1. Full-screen vies are refreshing according to refresh parameter but thumbnails are not shown. Moreover, main/full-screen view switches between cameras randomly (refresh: 1000). It seems to me as it's too fast ???
Image


Ad.2. All look pretty fine but they do not refresh at all:
Image

BR
pimseb
Posts: 42
Joined: Wednesday 13 September 2017 13:51
Target OS: Raspberry Pi / ODroid
Domoticz version: 2020.1
Location: France
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by pimseb »

Hello,
I have 4 cameras in my dashticz but one of them isn't displayed. The 3 others do work.
The camera giving me problem is an Amcrest IPM-721S.
According to them the snapshot command is : cgi-bin/snapshot.cgi?1
Here is my CONFIG.js :

Code: Select all

blocks['cam_buanderie'] = {
        type: 'camera',
        imageUrl: 'http://admin:[email protected]:7800/cgi-bin/snapshot.cgi?1',
        refresh: 1000,
        width: 5,
        height: 220
}

If I enter this URL in a browser the image is shown just fine. But within dashticz it doesn't work. Maybe it has something to do with the user:password string ? I know I could use the camera idx from domoticz and put it into dashticz, but if I do it this way, it slows down my raspberry system drastically. So it's not a solution for me.
Thank you
User avatar
clinkadink
Posts: 417
Joined: Tuesday 31 December 2019 1:15
Target OS: Linux
Domoticz version: 2020.2
Location: Swindon, UK
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by clinkadink »

It could be because because you passing your credentials via basic auth (i.e. before the '@' sign), which is being blocked by many browsers now. It maybe that's not what wrong here, but its worth trying to rule it out. There maybe some other url constructs that you can use, e.g. below.

cgi-bin/snapshot.cgi?1&loginuse=admin&loginpas=[PASSWORD]
cgi-bin/snapshot.cgi?chn=1&u=admin&p=[PASSWORD]

Btw - Amcrest are rebranded Dahua cameras. You can check their urls here: https://www.ispyconnect.com/man.aspx?n=Dahua
"UI is the saddle, the stirrups, & the reins. UX is the feeling you get being able to ride the horse."
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

Hi, I am really looking forward using your camera setup.

i've tried but couldn't get it to work. does it work on the latest Master Branch?

Thnx in advance
pimseb
Posts: 42
Joined: Wednesday 13 September 2017 13:51
Target OS: Raspberry Pi / ODroid
Domoticz version: 2020.1
Location: France
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by pimseb »

I had to install beta. Master branch didn't work
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

pimseb wrote: Monday 18 May 2020 12:36 I had to install beta. Master branch didn't work
Works like a charm in Beta, thanks a lot!
hopefully it will be release in the master branche soon!
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

If I may take the liberty to add a suggestion to you great work, I would say; it would be cool to have one big picture that rotates all the cameras every X seconds with a small preview of all camera's in the bottom. if you click on the specific (rotated) image you will see the view you have already created. Nevertheless fantastic setup and definitly something I've been waiting for! Cheers.
pimseb
Posts: 42
Joined: Wednesday 13 September 2017 13:51
Target OS: Raspberry Pi / ODroid
Domoticz version: 2020.1
Location: France
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by pimseb »

That's a great idea.
clinkadink : I tried all the cgi-bin possible for my Amcrest camera with user, pass but the cam always sends a popup that asks for user/password. The only way to get the picture in a browser is user:pass@server:port and it unfortunately doesn't work in dashticz
Maybe I need to change the camera
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

pimseb wrote:That's a great idea.
clinkadink : I tried all the cgi-bin possible for my Amcrest camera with user, pass but the cam always sends a popup that asks for user/password. The only way to get the picture in a browser is user:pass@server:port and it unfortunately doesn't work in dashticz
Maybe I need to change the camera
You could try using the camera url from domoticz. Or add your cameras to zoneminder and use the zoneminder url


Sent from my iPhone using Tapatalk
User avatar
clinkadink
Posts: 417
Joined: Tuesday 31 December 2019 1:15
Target OS: Linux
Domoticz version: 2020.2
Location: Swindon, UK
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by clinkadink »

pimseb wrote: Monday 18 May 2020 14:19 I tried all the cgi-bin possible for my Amcrest camera with user, pass but the cam always sends a popup that asks for user/password. The only way to get the picture in a browser is user:pass@server:port and it unfortunately doesn't work in dashticz. Maybe I need to change the camera.
That's a shame. I have seen this many times before. Even in Dashticz. For me, user:pass@server:port works in any browser, but it does not work in Dashticz. I have to use server:port?u=user&p=pass configuration. But Trigon raised a safe bet, the Domoticz camera stream will work - and it will save you from buying another camera. Cheers ;)
"UI is the saddle, the stirrups, & the reins. UX is the feeling you get being able to ride the horse."
User avatar
clinkadink
Posts: 417
Joined: Tuesday 31 December 2019 1:15
Target OS: Linux
Domoticz version: 2020.2
Location: Swindon, UK
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by clinkadink »

Trigun wrote: Monday 18 May 2020 13:47 If I may take the liberty to add a suggestion to you great work, I would say; it would be cool to have one big picture that rotates all the cameras every X seconds with a small preview of all camera's in the bottom. if you click on the specific (rotated) image you will see the view you have already created. Nevertheless fantastic setup and definitly something I've been waiting for! Cheers.
Yes, that is possible. I have something very similar for my Dashticz Plex component. It basically cycles through each item indefinitely - with animation of course ;) I will add it as a feature request.
viewtopic.php?f=78&t=32751#p247907
"UI is the saddle, the stirrups, & the reins. UX is the feeling you get being able to ride the horse."
Trigun
Posts: 390
Joined: Wednesday 30 November 2016 11:58
Target OS: Raspberry Pi / ODroid
Domoticz version: 4.10717
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by Trigun »

clinkadink wrote:
Trigun wrote: Monday 18 May 2020 13:47 If I may take the liberty to add a suggestion to you great work, I would say; it would be cool to have one big picture that rotates all the cameras every X seconds with a small preview of all camera's in the bottom. if you click on the specific (rotated) image you will see the view you have already created. Nevertheless fantastic setup and definitly something I've been waiting for! Cheers.
Yes, that is possible. I have something very similar for my Dashticz Plex component. It basically cycles through each item indefinitely - with animation of course ;) I will add it as a feature request.
viewtopic.php?f=78&t=32751#p247907
Cool!! That’s sounds great! CheersImage

Also I am curious now what you did with plex? Image


Sent from my iPhone using Tapatalk
User avatar
clinkadink
Posts: 417
Joined: Tuesday 31 December 2019 1:15
Target OS: Linux
Domoticz version: 2020.2
Location: Swindon, UK
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by clinkadink »

Trigun wrote: Monday 18 May 2020 22:29 Also I am curious now what you did with plex? Image
Its a 'carousel', like a photo stream, that cycles through all the media that the family are watching, or have watched recently. I added a webhook in Plex and connected to Domoticz as a dummy device. I then just styled it in Dashticz ;)

Image
"UI is the saddle, the stirrups, & the reins. UX is the feeling you get being able to ride the horse."
User avatar
jjnh
Posts: 33
Joined: Sunday 09 December 2018 14:06
Target OS: Linux
Domoticz version: 2023.1
Location: Netherlands
Contact:

Re: Dashticz IP Cameras - Features, Fixes & Updates

Post by jjnh »

Great work!! this plugin is work so much better that the previous option.

I am also suffering from the "screen flipping" issue.

Currently I have 2 camera's (more planned) and sometimes (not always), when selecting one camera for full screen, the shown image will flip to the other camera once every x seconds. The swap is very short (less than 1 second) and seems to be in sync with the image refresh.

Keep up the good work!!
Odroid N2+ 4GB, with an RfxTrx433E, Zigbee with Slaesh's CC2652RB, Z-Wave, BroadLink IR using RM mini 3 and P1 connected.
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 1 guest