diff --git a/resources/lib/objects/_kodi_musicvideos.py b/resources/lib/objects/_kodi_musicvideos.py index 600144ff..404669d2 100644 --- a/resources/lib/objects/_kodi_musicvideos.py +++ b/resources/lib/objects/_kodi_musicvideos.py @@ -50,6 +50,19 @@ class KodiMusicVideos(KodiItems): ) self.cursor.execute(query, (args)) + def add_musicvideo_16(self, *args): + + query = ( + ''' + INSERT INTO musicvideo( + idMVideo, idFile, c00, c04, c05, c06, c07, c08, c09, c10, c11, c12) + + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + ''' + ) + self.cursor.execute(query, (args)) + + def update_musicvideo(self, *args): query = ' '.join(( @@ -61,6 +74,17 @@ class KodiMusicVideos(KodiItems): )) self.cursor.execute(query, (args)) + def update_musicvideo_16(self, *args): + + query = ' '.join(( + + "UPDATE musicvideo", + "SET c00 = ?, c04 = ?, c05 = ?, c06 = ?, c07 = ?, c08 = ?, c09 = ?, c10 = ?,", + "c11 = ?, c12 = ?" + "WHERE idMVideo = ?" + )) + self.cursor.execute(query, (args)) + def remove_musicvideo(self, kodi_id, file_id): self.cursor.execute("DELETE FROM musicvideo WHERE idMVideo = ?", (kodi_id,)) self.cursor.execute("DELETE FROM files WHERE idFile = ?", (file_id,)) diff --git a/resources/lib/objects/musicvideos.py b/resources/lib/objects/musicvideos.py index 34e77617..f280af51 100644 --- a/resources/lib/objects/musicvideos.py +++ b/resources/lib/objects/musicvideos.py @@ -193,8 +193,12 @@ class MusicVideos(Items): log.info("UPDATE mvideo itemid: %s - Title: %s", itemid, title) # Update the music video entry - self.kodi_db.update_musicvideo(title, runtime, director, studio, year, plot, album, - artist, genre, track, premiered, mvideoid) + if self.kodi_version > 16: #Krypton and later + self.kodi_db.update_musicvideo(title, runtime, director, studio, year, plot, album, + artist, genre, track, premiered, mvideoid) + else: + self.kodi_db.update_musicvideo_16(title, runtime, director, studio, year, plot, album, + artist, genre, track, mvideoid) # Update the checksum in emby table emby_db.updateReference(itemid, checksum) @@ -209,8 +213,12 @@ class MusicVideos(Items): fileid = self.kodi_db.add_file(filename, pathid) # Create the musicvideo entry - self.kodi_db.add_musicvideo(mvideoid, fileid, title, runtime, director, studio, - year, plot, album, artist, genre, track, premiered) + if self.kodi_version > 16: #Krypton and later + self.kodi_db.add_musicvideo(mvideoid, fileid, title, runtime, director, studio, + year, plot, album, artist, genre, track, premiered) + else: + self.kodi_db.add_musicvideo_16(mvideoid, fileid, title, runtime, director, studio, + year, plot, album, artist, genre, track) # Create the reference in emby table emby_db.addReference(itemid, mvideoid, "MusicVideo", "musicvideo", fileid, pathid,