2019-05-21, 17:09
Is this also working with simple USB plug&play webcams?
(2019-03-30, 17:12)Spirou Wrote: If you are interested in an updated version that supports multiple cam feeds, positioning of the overlay window(s) and that is compatible with kodi 18 you may want to look here.
(2019-06-15, 19:07)Spirou Wrote: The code has been updated to fix the wrong calculation of y posiition in square arrangement.
(2019-06-15, 19:58)jouster Wrote: However, I have now noticed another little glitch....Ive set the screen to stay on the screen until I close them down and it seems the video loops every 2 seconds....
index = (index + 1)%10
index = (index + 1)
(2019-06-15, 23:25)Spirou Wrote:(2019-06-15, 19:58)jouster Wrote: However, I have now noticed another little glitch....Ive set the screen to stay on the screen until I close them down and it seems the video loops every 2 seconds....
Hmm, I am not seeing this lopp with my feeds. Maybe it is because the snapshot files are looping through names snapshot0.jpg to snapshot9.jpg (to avoid piling up) and your os/filesystem does not allow overwriting.
For a quick test and perhaps fix you could change line 184 (in update thread) of file default.py from
toCode:index = (index + 1)%10
This should avoid the neccessity to overwrite any existing file.Code:index = (index + 1)
The orginal addon inserts a time stamp in the snapshot file name instead of a looping index and, thus, would not have the issue.
If this works for you, I will update the addon code accordingly.
(2019-06-16, 12:09)jouster Wrote:That last change of line 184 seems to have fixed things as there is now no looping.(2019-06-15, 23:25)Spirou Wrote:(2019-06-15, 19:58)jouster Wrote: However, I have now noticed another little glitch....Ive set the screen to stay on the screen until I close them down and it seems the video loops every 2 seconds....
Hmm, I am not seeing this lopp with my feeds. Maybe it is because the snapshot files are looping through names snapshot0.jpg to snapshot9.jpg (to avoid piling up) and your os/filesystem does not allow overwriting.
For a quick test and perhaps fix you could change line 184 (in update thread) of file default.py from
toCode:index = (index + 1)%10
This should avoid the neccessity to overwrite any existing file.Code:index = (index + 1)
The orginal addon inserts a time stamp in the snapshot file name instead of a looping index and, thus, would not have the issue.
If this works for you, I will update the addon code accordingly.
Ill give this a try later on today and keep you posted...thanks again for the prompt response...
Quote:{"error":{"code":-32099,"message":"Bad client permission."},"id":"1","jsonrpc":"2.0"}