[MOD] ClearART support with Movies
#1
Hi !

ClearART support for Movies

Description
A ClearART appear when you press pause during watching movie.

How Do you use it ?
  • Make a backup of your DialogSeekbar.xml.
  • Download : DialogSeekbar.zip
    http://www.mediafire.com/?4557a9y9ip6kkm6
  • Put in The Neon skin folder
    XP: Documents and Settings\%userprofile%\Application Data\XBMC\addons\skin.neon.svn\720p
    Vista/Windows 7: Users\%userprofile%\AppData\Roaming\XBMC\addons\skin.neon.svn\720p
    Mac OS X: /Users/<your_user_name>/Library/Application Support/addons/skin.neon.svn/720p
    iOS: /private/var/mobile/Library/Preferences/XBMC/addons/skin.neon.svn/720p
    Linux: $HOME/.xbmc/addons/skin.neon.svn/720p
  • Download clearART on fanart.tv
  • Rename it to : clearart.png
  • Put it in the root of your movie folder.

Screenshot:
ImageImageImageImage
Reply
#2
Yeah plz share it
Reply
#3
Well Stoly doesn't answer so I tell you how to modify DialogSeekBar.xml.

DialogSeekBar.xml is in Neon repertory.
For Windows
Go to : C:/Document and Settings/user/ApplicationData/xbmc/addons/skin.neon.svn/720p

For ATV2
Go to : /private/var/mobile/Library/Preferences/XBMC/addons/skin.neon.svn/720p


First of all, make a backup of you DialogSeekBar.xml.
After that open it and add this line :
Code:
- <control type="image" id="7657">
  <description>clearart for movies</description>
  <posx>0</posx>
  <posy>435</posy>
  <width>330</width>
  <height>185</height>
  <texture background="true">$INFO[Player.FolderPath]../clearart.png</texture>
  <aspectratio>keep</aspectratio>
  <visible>VideoPlayer.Content(movies)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
  </control>
- <control type="image" id="7658">
  <description>clearart for movies</description>
  <posx>0</posx>
  <posy>435</posy>
  <width>330</width>
  <height>185</height>
  <texture background="true">$INFO[Player.FolderPath]clearart.png</texture>
  <aspectratio>keep</aspectratio>
  <visible>VideoPlayer.Content(movies)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
  </control>

That's all !!

EDIT:
I changed the postion of :
  • the Poster
    Search this line and If you want to change the position, simply change the value of : <posx>.....</posx> and <posy>....</posy>
    Code:
    - <control type="image">
      <description>tv show image</description>
      <posx>960</posx>
      <posy>-246</posy>
      <width>300</width>
      <height>300</height>
      <aspectratio align="right" aligny="bottom">keep</aspectratio>
      <texture>$INFO[VideoPlayer.Cover]</texture>
      <bordertexture border="5">button-nofocus.png</bordertexture>
      <fadetime>400</fadetime>
      <bordersize>5</bordersize>
    - <animation type="WindowOpen">
      <effect type="fade" start="0" end="100" time="900" delay="400" />
      </animation>
      <visible>VideoPlayer.Content(movies)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
      </control>

  • IMB rating, Directed by, ......
    Search this line and If you want to modify it, simply change the value of : <posx>.....</posx> and <posy>....</posy>
    Code:
    - <control type="label">
      <posx>80r</posx>
      <posy>620</posy>
      <width>1000</width>
      <height>25</height>
      <label>[COLOR=mainblue]IMDB:[/COLOR] $INFO[VideoPlayer.RatingAndVotes ]</label>
      <align>right</align>
      <aligny>center</aligny>
      <font>Font_Bartowski_Movies</font>
      <textcolor>ffffffff</textcolor>
      <visible>VideoPlayer.Content(movies)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
    - <control type="label">
      <posx>80r</posx>
      <posy>645</posy>
      <width>1000</width>
      <height>25</height>
      <label>[COLOR=mainblue]Directed by:[/COLOR] $INFO[VideoPlayer.Director]</label>
      <align>right</align>
      <aligny>center</aligny>
      <font>Font_Bartowski_Movies</font>
      <textcolor>ffffffff</textcolor>
      <visible>VideoPlayer.Content(movies)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
    - <control type="label">
      <posx>80r</posx>
      <posy>645</posy>
      <width>1000</width>
      <height>25</height>
      <label>[COLOR=mainblue]Chapter Name:[/COLOR] $INFO[Player.ChapterName]</label>
      <align>right</align>
      <aligny>center</aligny>
      <font>Font_Bartowski_Movies</font>
      <textcolor>ffffffff</textcolor>
      <visible>VideoPlayer.Content(movies)+ Player.ChapterChapterName +![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
    - <control type="label">
      <posx>80r</posx>
      <posy>670</posy>
      <width>1000</width>
      <height>25</height>
      <label>$INFO[Player.Chapter,[COLOR=mainblue]$LOCALIZE[21396]:[/COLOR] ]$INFO[Player.ChapterCount, / ]</label>
      <align>right</align>
      <aligny>center</aligny>
      <font>Font_Bartowski_Movies</font>
      <textcolor>ffffffff</textcolor>
      <visible>VideoPlayer.Content(movies) + Player.ChapterCount + ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
    - <control type="label">
      <posx>80r</posx>
      <posy>670</posy>
      <width>1000</width>
      <height>25</height>
      <label>[COLOR=mainblue]$LOCALIZE[31226]:[/COLOR] $INFO[VideoPlayer.mpaa]</label>
      <align>right</align>
      <aligny>center</aligny>
      <font>Font_Bartowski_Movies</font>
      <textcolor>ffffffff</textcolor>
      <visible>VideoPlayer.Content(movies) + !Player.ChapterCount + ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
      </control>
      </control>


ImageImageImageImage
Reply
#4
Thanks steve really appreciate this i followed ur guideline but its not seems to be working

i copied those first lines u posted added to DialogSeekBar.xml then cpied clearart in movie folder renaming it clearart.png but still not working a lil help needed

do i have to cope all those codes you posted above or just first one i just copy and pasted first one & also do i have to add - this as well i mean - < or start from just <
Reply
#5
hope that stoli can put this into neon
Nvidia Shield with Kodi 18
Reply
#6
@Razieal : After editing your xml, did you refresh your librairy ? When you clicked on pause, did you wait ?
I'm so confused ! It works for me, why it doesn't work for you ....

I'll give you my DialogSeekbar ! Take it, Test it and Tell me Wink
http://www.mediafire.com/?4557a9y9ip6kkm6

( I tested it on my computer and my ATV2 and it work great)
Reply
#7
just copied your file and now its working thanks a lot mate really appreciate your hard work
last question is did u get your clearart from fanart.tv? or is there any other site as well
Reply
#8
Yeah ! Nice ! I'm so glad that it works for you !!

Yes, I get all my clearart from fanart.tv. Sometimes it doesn't exist so I create it Wink
Don't forget to check the case "Download clearART" in Settings of the Artwork Downloader Addon Wink

I've got some WIP with Neon. I will try, I'm not a coder .....
  • I want to add CharacterART in the Episode View. I think I put it in the left bottom.
  • I want to add flags when we press pause.
  • I want to add logos in the Showcase view for movie.

What do you think about it ?

If you have any ideas, tell me I will try Wink
Reply
#9
nice one mate

cant wait to see chracterART in Episode view are you working on it?

n also logos in showcase (fantastic idea)

pleaseeeee share it here when u manage to accomplish the tasksSmile

also steve can i ask you please upload clearart that you created yourself i ran artwork downloader as u recommended i have clearart saved auto now but lot of missing ones so if you can upload yours in a file that would be gr888888888 mate

keep up the good work
Reply
#10
Well
I can't add logo in the showcase view, it's too difficult ! I don't have any knowledge to manage it.

Tell me which clearart do you want ? All my clearART ? Some of them have a french title.
Reply
#11
hi steve well all with english titlesSmile that would be great mate

n also need help with something else clearart view and poster view on seekbar i want cleart art on right and poster on left side of screen...how can i do that mate?
Reply
#12
nice work steve_

+1 rep


thanks
Reply
#13
thanks thechinmaster
Reply

Logout Mark Read Team Forum Stats Members Help
[MOD] ClearART support with Movies0