[Mod]View Slide - TVShows Support + TV Show Logos
#1
Hi all,

the Slide view is my favorite view, so i modded or more accurate extended it for use with the TV Shows Library.

I just enabled it for TV Shows, changed the cases to tv-case, added TV Shows Logos and made some minor Changes.

Image

Replace the code in View-Slide.xml with this one http://pastebin.com/bDnu62v5

Note: You have to enable the "Use Posters" setting or you won't be able to choose the view.

I was working of Transparency SVN Version 428. I don't know, if this works with older versions.

@ronie, would be great, if you could adapt the changes

greetz meierkurt
Reply
#2
MeierKurt Wrote:@ronie, would be great, if you could adapt the changes

it would be my pleasure ;-)

i like the idea and your code looks clean. well done!
cheers for this.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
you can automatically download logo with the script in my sign Wink
Reply
#4
MeierKurt Wrote:@ronie, would be great, if you could adapt the changes

added as of T! svn r436
i've also added the logo to the fanart and coverflow views.

last, i've added a button to the video dialog for ppic's Logo Downloader script.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#5
ronie Wrote:added as of T! svn r436
i've also added the logo to the fanart and coverflow views.

last, i've added a button to the video dialog for ppic's Logo Downloader script.

Got a pic of the Fanart view, you have no idea how many hours, maybe a solid 4-5 hours on T! trying to incorporate logos...
Image

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
Reply
#6
mcborzu Wrote:Got a pic of the Fanart view, you have no idea how many hours, maybe a solid 4-5 hours on T! trying to incorporate logos...

i took the easy way out and just dropped it (slightly tilted) at the top-left:

Image
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#7
I guess I'm a dunce, but I can't figure out how to get this script working with the latest XBMC nightlies. I've tried creating a scripts folder in the main XBMC installation folder and then putting the extracted script folder there, but it doesn't show up when I try to select it from Skin Settings -> Scripts -> Script Path. I know scripts and addons have changed with the latest builds, so maybe I'm putting it in the wrong place? Can anyone help?
Reply
#8
copy the script to .xbmc/addons
rename the script folder to script.logo-downloader
add an addon.xml file to this folder:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.logo-downloader"
       name="Logo Downloader"
       version="1.2.2"
       provider-name="ppic">
  <requires>
    <import addon="xbmc.python" version="1.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="default.py" />
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>30369</minversion>
    <summary>Logo Downloader script</summary>
    <description>Download TV show Logos</description>
  </extension>
</addon>
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#9
Thanks ronie, that did it! The logos are pretty cool. It found 14 out of 31, but shows a "07-Ghost" logo for 8 others. Very strange. I like anime, but I've never heard of that show, so it's never been in my library. That logo shows up for shows like Miami Vice, that definitely have a logo. I'll have to post a bug report over on the release thread.

Thanks again, ronie!
Reply
#10
brilliant! now I can finally start sorting my tv serials Smile two thumbs up!
[XBMC-DX r31103 T! r455]
.:LAPTOP:. Dell [C2D E6400] [8G DDR2] [Intel X4500HD] [LED 14'' 1280*800@60p]
.:NAS:. Antec [Ci7 920] [12G DDR3] [Matrox m9148] [19.4 TiB] [Triple Samsung 22'' 5040*1050@60p]
.:HTPC:. Antec [C2 Q9400] [6G DDR2] [nv GT240 VP4] [SB X-FI Ti] [Toshiba 46'' 1920*1080@24p] [Logitech Z5K5]
Reply
#11
Never mind. This must be a network problem. XBMC no longer sees my shares...
Reply
#12
ronie Wrote:copy the script to .xbmc/addons
rename the script folder to script.logo-downloader
add an addon.xml file to this folder:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.logo-downloader"
       name="Logo Downloader"
       version="1.2.2"
       provider-name="ppic">
  <requires>
    <import addon="xbmc.python" version="1.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="default.py" />
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>30369</minversion>
    <summary>Logo Downloader script</summary>
    <description>Download TV show Logos</description>
  </extension>
</addon>

Hmmm, I've done all this but I cannot choose the script path in skin settings/scripts/enable logo downnloader script.
I've grabbed the logo downloader script and extracted to the addons path, renamed the folder it created from "logo downloader" to "script.logo-downloader" and created that addon.xml file in the folder. The "get logo" button appears when I choose show info but nothing happens.
Sorry Ronie, probably not your skins' issue but can anyone help?
Reply
#13
clipper99 Wrote:Hmmm, I've done all this but I cannot choose the script path in skin settings/scripts/enable logo downnloader script.

what version of xbmc are you using?
you need a fairly recent build for this to work.
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#14
You were right Ronie, I was at 30362 and assumed it was recent enough! Blush
Reply
#15
ronie Wrote:copy the script to .xbmc/addons
rename the script folder to script.logo-downloader
add an addon.xml file to this folder:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.logo-downloader"
       name="Logo Downloader"
       version="1.2.2"
       provider-name="ppic">
  <requires>
    <import addon="xbmc.python" version="1.0"/>
  </requires>
  <extension point="xbmc.python.script"
             library="default.py" />
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>30369</minversion>
    <summary>Logo Downloader script</summary>
    <description>Download TV show Logos</description>
  </extension>
</addon>

i'll include it next version Wink
Reply

Logout Mark Read Team Forum Stats Members Help
[Mod]View Slide - TVShows Support + TV Show Logos0