-
Posts
1,366 -
Joined
-
Last visited
-
Days Won
135
Content Type
Profiles
PreShow Experience Guides
Downloads
Store
Forums
Feature Requests
Everything posted by Matt
-
Did anyone watch any good scary movies in October?
-
I think that PreShow will already work with https links. My test actions all hit https links without issue.
-
That is the original unmodified file for the forum software. I've scanned the site a few times and had someone look at that file specifically and there are no issues.
-
Chrome & Fire 4k bumper set with 5.1 surround sound audio View File 4k Chrome & Fire bumper set with 5.1 audio. Videos include: Countdown Courtesy Feature Intro Feature Outro PreShow Intermission Sponsors Theater Intro Theater Outro Trailers Intro Trailers Outro Trivia Intro Trivia Outro Submitter Matt Submitted 10/15/2024 Category Supporter Early Access
-
PreShow Holiday Bumper: Graveyard Halloween Feature Intro
Matt replied to Matt's topic in PreShow Content
This file has been updated to an mkv. -
-
- 1 review
-
- 2
-
View File PreShow Halloween Ghost Enjoy this short PreShow ghost bumper for Halloween 2024. Submitter Matt Submitted 10/07/2024 Category Holiday Bumpers
-
The images look fine for me in an image viewer and in PreShow. Is there some way that thumbnails were added to the folder? I'm not sure what else could cause this. I'll look at a log to see if I can see anything else if you want to share one.
-
- 1 review
-
- 1
-
View File PreShow Halloween Monster 2024 Enjoy this short PreShow monster bumper for Halloween 2024. Submitter Matt Submitted 10/06/2024 Category Holiday Bumpers
-
Awesome. Glad you figured out a way to make it work.
-
It isn't set up on the actual file. The sequence is prepared before the movie plays and is based off of the information that Kodi provides, so there's no way for PreShow to know what the exact ratio is based on the video unless Kodi knows that already. You can either use Tiny Media Manager to create more detailed info for your files in Kodi or allow PreShow to pull the aspect ratio from IMDB, which adds a delay to the start of the sequence.
-
You can create different sequences with aspect ratio as a condition. There is currently an issue with 2.2 and 2.35 aspect ratios being combined as 2.22.35 so that neither work. This has been fixed in the dev version and will be available in the next official release.
-
Can you post a screenshot from the file(s)? I don't think that the framerate should change the actual ratio, so I'm curious if it is mislabeled (2.39 instead of 2.4) or something else. I'm not positive about this, but I don't think Kodi tracks a file's framerate. It is something that we could get from TMM, but I don't really want to add something that requires a 3rd party app to work.
-
Working Pop up with spinning arrow. Can this be disabled or blocked?
Matt replied to JTSlade's topic in PreShow Experience
That's a skin issue that an addon can't control. To get rid of it, you will need to either use a PreShow compatible skin or edit your skin files. Here is a thread about it: Here are some skins set up for PreShow: https://preshowexperience.com/files/category/7-skins/ -
https://preshowexperience.com/files/category/2-preshow-videos/
-
What are the images? Please share 1 file that doesn't look good.
-
@peterclonesThanks for testing that out and reporting your findings. The issue has been resolved in the development version and the fix will be in the next version of PreShow.
-
Movie trailers requires the YouTube addon. You should be able to install it from the link that @acid303 provided. I've had times where add-ons won't install, and then later on it will work. Not that this matters, but this instance of trailers for the movies doesn't have anything directly related to PreShow.
-
The filename doesn't matter. http://192.168.178.33/api/wsltUbHQbdnDhDEidaNJQg2s85Nv9OldLPE6TYeT/groups/Wand/action PUT: { "on": true } sleep://180000 http://192.168.178.33/api/wsltUbHQbdnDhDEidaNJQg2s85Nv9OldLPE6TYeT/groups/Wand/action PUT: { "on": false, "transitiontime": 500 } Use the above code in an actual movie and not the test or preview.
-
The code you have turns it on. http://192.168.178.33/api/wsltUbHQbdnDhDEidaNJQg2s85Nv9OldLPE6TYeT/groups/Wand/action PUT:{"on":true,"bri":100,"transitiontime":1} sleep://180000 http://192.168.178.33/api/wsltUbHQbdnDhDEidaNJQg2s85Nv9OldLPE6TYeT/groups/Wand/action PUT: { "on": false, "transitiontime": 500 } To test it, start with 1 section of code to turn it on or off and make sure that works before adding anything else. You want to make sure that the base code works in your system before adding additional elements to it.
-
If you want the sleep to be 3 minutes, that would be: sleep://180000 It is measured in milliseconds. Your script currently just turns off the light. I'm not sure if it is being turned on elsewhere or not. To turn it on, you'd need to add some variation of the following prior to the sleep command: http://<bridge ip address>/api/<username>/groups/<group name>/action PUT:{"on":true,"bri":100,"transitiontime":30}
-
The preview shortens all sleeps actions to 1 second. Your code is set for 3.5 seconds and the timestamps show the preview reduction to 1 second. Then add a blank line after the sleep code.