• 1
  • 22
  • 23
  • 24(current)
  • 25
  • 26
  • 53
[RELEASE] Random and last items smartplaylist script for Skins
Temp fix.
Setting playlist to episode will fix it.

I basically have two playlists for everything now but hey, it works Big Grin
Reply
What do you mean? Setting the playlist content to episode? If so that is no good, not when you have 180 shows with 14,000 episodes.
Reply
The poperty "Type" is not working properly for me if type == Music

The condition below never returns true for music - Working for Episode & Movie.

PHP Code:
StringCompare(Window(home).Property(HomePlayListTen.Type),Music

Is anyone else having this problem?
Noli illegitimi carborundum


Reply
(2013-01-07, 05:15)dpar Wrote: What do you mean? Setting the playlist content to episode? If so that is no good, not when you have 180 shows with 14,000 episodes.

This is why I have two playlists for all my stuff now.
First playlist as normal for main menu.
Second playlist I use to point at randomandlast for widgets.
Reply
(2013-01-07, 20:32)Venares Wrote:
(2013-01-07, 05:15)dpar Wrote: What do you mean? Setting the playlist content to episode? If so that is no good, not when you have 180 shows with 14,000 episodes.

This is why I have two playlists for all my stuff now.
First playlist as normal for main menu.
Second playlist I use to point at randomandlast for widgets.

Oh ok I see what you mean now. I thought you meant you had two playlists on the main menu.
Reply
(2013-01-07, 19:22)Mudislander Wrote: The poperty "Type" is not working properly for me if type == Music

The condition below never returns true for music - Working for Episode & Movie.

PHP Code:
StringCompare(Window(home).Property(HomePlayListTen.Type),Music

Is anyone else having this problem?

Script is giving problems on TVShow and Music playlists, log here

Movie and Episode playlists are working.

Any help would be welcome. Cheers
Noli illegitimi carborundum


Reply
I will have a look on TVShow tomorrow.
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
I got the widget to display properly by switching my playlists from tv show to episode for the time being. But the script.is still failing randomly, just as it did in the debug log I posted earlier.
Reply
Hi,

is there a function to get latest movie as a submenu pint from startmenu ? I have a home menu point called watchlist. This is a playlist and widget are ok, but now i want to get a submenu entry to say enter playlist with sort of "latest movies" like latest movies in standard video library.

Eisi
Reply
(2013-01-10, 16:22)Eisi2005 Wrote: Hi,

is there a function to get latest movie as a submenu pint from startmenu ? I have a home menu point called watchlist. This is a playlist and widget are ok, but now i want to get a submenu entry to say enter playlist with sort of "latest movies" like latest movies in standard video library.

Eisi

go ask the skinner
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
ah ok thanks t thought it was a function from your script
Reply
Fixed for TVShows playlist.

I'm at my office and I can't use github to push my fix so you just have to edit randomandlastitems.py file and go to line 238 :

before
Code:
# Add TV Show fanart and thumbnail for each episode
#_episode["tvshowid"]=_file['id']
art = _episode['art']
_episode["tvshowfanart"]=art.get('tvshow.fanart')
_episode["tvshowthumb"]=art.get('thumb')

after
Code:
# Add TV Show fanart and thumbnail for each episode
#_episode["tvshowid"]=_file['id']
art = _episode['art']
# Add episode ID when playlist type is TVShow
_episode["id"]=_episode['episodeid']
_episode["tvshowfanart"]=art.get('tvshow.fanart')
_episode["tvshowthumb"]=art.get('thumb')

@Martijn : could you push this fix on github and on repo ? Thanks.
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
You know you can edit github online through the browser Wink
Its the same as a commit Smile
Just open the file and click the edit button and save
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply
Will do this right now Wink
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
For now, script can only work with Albums smart playlists.
Sorry for my english, but, you know, I'm French so ...

Main HTPC : Odroid-C2 running CoreELEC with Titan Bingie
Secondary HTPC : Freebox Mini 4K running Android TV with Titan Bingie
Reply
  • 1
  • 22
  • 23
  • 24(current)
  • 25
  • 26
  • 53

Logout Mark Read Team Forum Stats Members Help
[RELEASE] Random and last items smartplaylist script for Skins1