Posts: 3,909
Joined: Dec 2004
Reputation:
20
Nuka1195
Skilled Python Coder
Posts: 3,909
idk slaveunit, perhaps a debug log would show something.
Posts: 3,909
Joined: Dec 2004
Reputation:
20
Nuka1195
Skilled Python Coder
Posts: 3,909
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
Posts: 625
Joined: Aug 2010
Reputation:
23
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.
Posts: 3,909
Joined: Dec 2004
Reputation:
20
Nuka1195
Skilled Python Coder
Posts: 3,909
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" ) ):
Posts: 2,368
Joined: Mar 2010
Reputation:
60
giftie
Skilled Python Coder
Posts: 2,368
macshield - If you had installed the script by any other means other than the Addon Repo the best thing to do is delete the following folders:
In addons - script.cinema.experience
In userdata/addon_data - script.cinema.experience
Restart XBMC, then download via the repo. This will verify you have the latest version and nothing is left behind from the previous version(the download link version on this thread had some extra stuff that is not needed and crashed when adjusting the settings..)