![]() |
|
[RELEASE] Home Theater Experience (Script) - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (/forumdisplay.php?fid=151) +---- Thread: [RELEASE] Home Theater Experience (Script) (/showthread.php?tid=55628) |
- SlaveUnit - 2010-12-13 23:27 Harro Wrote:I am by no means a coder or have any knowledge of it, but I googled around and this is what I have for all the stills for my .xml file Damn this is driving me insane. Even with the slides.xml in each folder they do not play. I even just did a clean reinstall of XBMC and only added the Night skin and the cinema script. Any ideas Nuka? Could it be the resolution of the slides maybe? Viewing them through "Pictures" works fine. - SlaveUnit - 2010-12-13 23:28 macshield Wrote:Ok I must have missed it. How is everyone able to configure the script? Every time I go to configure it in the menu xbmc just resets itself. Are you going to the script then hitting "c" to bring up the context menu? - Nuka1195 - 2010-12-13 23:34 idk slaveunit, perhaps a debug log would show something. - SlaveUnit - 2010-12-13 23:44 Nuka1195 Wrote:idk slaveunit, perhaps a debug log would show something. http://pastebin.com/6drFLKyV Looking through it myself as well. :/ I can clearly see that it adds no slides. Could it be since the includes.xml file isnt loading? Line 384 - 13:41:40 T:5576 M:1503092736 INFO: Error loading includes.xml file (PAL/includes.xml): Failed to open file (row=0, col=0) - Nuka1195 - 2010-12-14 00:02 looking at the code, slides.xml is NOT required. why it's skipping those i do not know. in xbmcscript_trivia.py at line 91, put "print path". make sure it's indented the same as the line below it. then at line 94 put "print entries". that will determine if the getdirectory call is working. no quotes - Harro - 2010-12-14 00:22 SlaveUnit I have been playing around with te Movie Quotes and MovieTunes Quotes. I can get then to play if I rename the .JPG to small case .jpg. Also I took out the .xml files and unticked use slides.xml in the config of Home Theater Cinema in XBMC.I now can play the trivia and all the rest through the theater button on the info screen of the main movie but still will not play the movie quiz trivia through the theater button. Only plays the stills and not the quiz. I must continue to look through the files again. - Nuka1195 - 2010-12-14 00:31 that would make sense. elif ( entry and os.path.splitext( entry )[ 1 ] in xbmc.getSupportedMedia( "picture" ) ): that will fail, because getSupportedMedia returns lower case. the regex's should ignorecase maybe for the ones with a slides.xml. the other line should be elif ( entry and os.path.splitext( entry )[ 1 ].lower() in xbmc.getSupportedMedia( "picture" ) ): - yut4n1 - 2010-12-14 00:36 ijourneaux Wrote:I always used ATD (Apple Trailer Downloader) to download trailers to my computer. After chagnes to the Apple site, that approach is broken. The author has promised a fix. this is a great alternative, the only thing it doesn't do is add the '-trailer' extension needed so xbmc and hte script need to play them.. anyone get this sorted and i'm a happy bunny! (oh and how to add a dedicated hte button into customisable confluence too )
- Nuka1195 - 2010-12-14 00:36 looking at my new version, that is what i do for determining valid media files. about apple trailers. i was almost done with a new version, then i changed things, but one of the features was to be able to download latest trailers on a schedule.
- SlaveUnit - 2010-12-14 01:08 Harro Wrote:SlaveUnit I have been playing around with te Movie Quotes and MovieTunes Quotes. I can get then to play if I rename the .JPG to small case .jpg. Also I took out the .xml files and unticked use slides.xml in the config of Home Theater Cinema in XBMC.I now can play the trivia and all the rest through the theater button on the info screen of the main movie but still will not play the movie quiz trivia through the theater button. Only plays the stills and not the quiz. I must continue to look through the files again. Great FIND! Yes, once renaming the .JPG to .jpg fixed those. But now we are in the same boat with the actual trivia slides not working. For all my trivia (a,b or a,c,b) I have the folowing in my slides.xml. And as stated before, these used to work pre-Dharma PHP Code: <slides>This was for files called: Bond_Trivia_1a.jpg Bond_Trivia_1b.jpg Bond_Trivia_2a.jpg Bond_Trivia_2b.jpg etc |