• 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 12
v19 Video ScreenSaver
#76
(2021-04-06, 17:31)bansheeat Wrote: I want to use this Video Screensaver but it is not working. I put a Video in the internal Storage on my Beelink GT1 mini. In Settings I point to the path where the Videofile is located. This Video is a mp4 File and is about 300 MB in Size. The Video Screensaver starts but shows only a black Screen with Date and Weather.
Any help appreciated.

I tested both single directory videos and multiple, both work... I'll need a debug log, THX
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
#77
(2021-04-06, 19:40)Lunatixz Wrote:
(2021-04-06, 17:31)bansheeat Wrote: I want to use this Video Screensaver but it is not working. I put a Video in the internal Storage on my Beelink GT1 mini. In Settings I point to the path where the Videofile is located. This Video is a mp4 File and is about 300 MB in Size. The Video Screensaver starts but shows only a black Screen with Date and Weather.
Any help appreciated.

I tested both single directory videos and multiple, both work... I'll need a debug log, THX
Here is the Kodi debug log https://paste.kodi.tv/ovizuduruf

What do I choose as source ? I tried all of them except for network, nothing works.

https://forum.geizhals.at/files/4685/202...140732.jpg
Orbsmart S87L Android 11 Quadcore AML S905X4 Cortex-A55 @ 2.0GHz Mali-G31 MP2 4GB DDR4-RAM / 32GB
BeeLink GT1 mini Android 8.1 Amlogic S905X2 CPU ARM G31 MP2 Grafik 4GB RAM/64 GB ROM
Kodi 20.3
Reply
#78
(2019-03-22, 00:56)leejk Wrote: Ok, figured out the problem. I had to add my folder that contained my videos to the File Manager as a source.

Bumping this since I also needed to do this and it wasn't documented. I have other plugins that work without explicitly also adding a folder in the File Manager as a source. Normally, you only have to point to the folder(s) in the plugin's settings and not anywhere else.
Reply
#79
I have mine added as a source, but I'm still getting a black screen when running it. I've tried with both 1.0.9 and 1.1.0, same result. Was working fine until I upgraded from Leia to Matrix yesterday...

Logs: https://paste.kodi.tv/ogotosewuy.kodi
Reply
#80
Okay, so, I did some digging on this, and I figured out what was going on: JSON-RPC is choking on the backslashes in the file path. Stuck a web-pdb trace at the start of getFileDetails on line 104, and even though the path parameter has the slashes escaped properly, by the time they go through the JSON-RPC parser they're no longer escaped. Per the log I pasted in the message above, the JSON being passed is invalid:
json:
{"jsonrpc":"2.0","method":"Files.GetFileDetails","params":{"file":"D:\Kodi Wallpapers\Aquarium004-720p.mp4","media":"video","properties":["file"]},"id":1}
If you drop that into jsonlint, it'll choke on the "file" line because it thinks the backslashes are trying to escape something, when they aren't.

For my particular use case - that is, a flat link to a file on the filesystem, not in a playlist or in a media source, I fixed this by making the following change:
Before:
python:
json_query = ('{"jsonrpc":"2.0","method":"Files.GetFileDetails","params":{"file":"%s","media":"video","properties":["file"]},"id":1}' % (path))
After:
python:
json_query = ('{"jsonrpc":"2.0","method":"Files.GetFileDetails","params":{"file":"%s","media":"video","properties":["file"]},"id":1}' % (path.replace(os.sep, '/'))

I'd make a PR against the repository but this is the first I've ever done any Kodi development and I don't know if this change would break links to media in a media source. Suffice it to say though that this definitively fixes the problem for me, and hopefully provides some insight into what exactly the bug here is.
Reply
#81
(2021-04-06, 17:31)bansheeat Wrote: I want to use this Video Screensaver but it is not working. I put a Video in the internal Storage on my Beelink GT1 mini. In Settings I point to the path where the Videofile is located. This Video is a mp4 File and is about 300 MB in Size. The Video Screensaver starts but shows only a black Screen with Date and Weather.
Any help appreciated.

Create a smartplaylist. Point to the playlist, even its just one video.


The Volume reduction does not work while passthrough is active. The AR gets some Kind of signal coz it Shows The volume for 3 seconds after videoscreensaver starts.

@Lunatixz is it possible for the addon to disable passthrough, lower The volume like set in settings of the addon? and bring the volume back to normal and enable passthrough again when the Screensaver is canceled?

Otherwise I can't use it as the "background ambient video player" that I'm looking for, while I don't watch anything. Beside of that, thank you for your work anyway.
Reply
#82
(2021-09-21, 23:31)moejoe Wrote:
(2021-04-06, 17:31)bansheeat Wrote: I want to use this Video Screensaver but it is not working. I put a Video in the internal Storage on my Beelink GT1 mini. In Settings I point to the path where the Videofile is located. This Video is a mp4 File and is about 300 MB in Size. The Video Screensaver starts but shows only a black Screen with Date and Weather.
Any help appreciated.

Create a smartplaylist. Point to the playlist, even its just one video.


The Volume reduction does not work while passthrough is active. The AR gets some Kind of signal coz it Shows The volume for 3 seconds after videoscreensaver starts.

@Lunatixz is it possible for the addon to disable passthrough, lower The volume like set in settings of the addon? and bring the volume back to normal and enable passthrough again when the Screensaver is canceled?

Otherwise I can't use it as the "background ambient video player" that I'm looking for, while I don't watch anything. Beside of that, thank you for your work anyway.

Try v.1.1.0 found in my beta repository.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
#83
Hello, after searching the forums I cannot find an answer so I am hoping someone can help with this.

I downloaded the Video Screensaver and configured it to pull videos from my library. Everything works as it should BUT….. I would like it to start at random times of the video file NOT from the start of the video every time. Is that possible to change somewhere in the coding? It is not an option to configure in settings.


Kodi 19.3
Estuary Skin
Windows 10
Reply
#84
@NOT_U

I have merged you into the correct thread.
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#85
Wasn’t sure exactly where it was supposed to go. Thanks for getting me to the right place.
Reply
#86
(2021-12-01, 03:13)NOT_U Wrote: Hello, after searching the forums I cannot find an answer so I am hoping someone can help with this.

I downloaded the Video Screensaver and configured it to pull videos from my library. Everything works as it should BUT….. I would like it to start at random times of the video file NOT from the start of the video every time. Is that possible to change somewhere in the coding? It is not an option to configure in settings.


Kodi 19.3
Estuary Skin
Windows 10

Sure... when I find time, I'll add a random seek option.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Reply
#87
You sir will be my hero. Great job on the addon as well.
Reply
#88
Hello,

Just updated to Matrix and have setup a new KODI installation. Installed this add-on from KODI repo and could not get any videos to play, same as another user mentioned, just get a black screen. Log file shows something it's not liking about pathname.

Installed beta version; it is even worse. Once the black screen comes up you loose all control of KODI and have tp bring up task manager to kill it. Tested on Windows 10. Add-on worked fine in Leia.
Reply
#89
So I am guessing that this add on will npt support 4K HDR .mov files since I only ever get a black screen when the add on is pointed to my NAS with hand picked Apple Aerial video files. Is there an add on for kodi that DOES support using your own 4K HDR .mov files as a screensaver?
Reply
#90
So are you asking the creator of this working add on to support 4K HDR movies?
Reply
  • 1
  • 4
  • 5
  • 6(current)
  • 7
  • 8
  • 12

Logout Mark Read Team Forum Stats Members Help
Video ScreenSaver3