2014-01-23, 08:40
He he
(2014-01-23, 01:01)ronie Wrote: the only thing you need to be aware of is this:
the script will delete the contents of the selected folder before it copies your artwork to that folder.
so do NOT select your movies folder or something like that.
(2014-01-26, 21:25)kurosh Wrote: Hi,
I've installed the Aeon MQ5 skin but whenever I try to update the fanart database for the main menu's for Movies, TV Shows or Music I get a script.artworkorganizer failed error. Attached is the xbmc.log file. Can anyone help?
http://pastebin.com/JMUxfvLd
XBMC Log File
Thanks!
(2014-01-27, 00:03)kurosh Wrote: Thanks Ronie. I suspected that looking through the logs myself. Any idea how to rebuild my music database tables?
def _delete_directories( self ):
if xbmcvfs.exists( self.directory ):
dirs, files = xbmcvfs.listdir( self.directory )
for item in dirs:
try:
shutil.rmtree( os.path.join(self.directory, item) )
except:
pass
def _delete_directories( self ):
if xbmcvfs.exists( self.directory ):
dirs, files = xbmcvfs.listdir( self.directory )
for item in dirs:
try:
remdir = os.path.join(self.directory, item)
if remdir in self.artworklist:
shutil.rmtree( remdir )
except:
pass
(2011-09-03, 21:55)ronie Wrote: this a complete re-write of the video fanart splitter script,
with a few extra options added as well.
the addon will copy your music & video fanart and thumbs to separate directories.
skins can use these directories to create a fanart slideshow on the home screen (for instance).
available options:
download: it's available in the addon repo.
let me know if there's any issues :-)