[Plugin] DVDArt - All artwork for MovingPictures, MyFilms, TVSeries, Music & more!!! (2 Viewers)

m3rcury

Development Group
  • Team MediaPortal
  • August 12, 2010
    977
    733
    Home Country
    Malta Malta
    Just to inform that there are some issues with fanart.tv site and api has been disabled. This results in the plugin not pulling anything from the web. Will inform once situation is back to normal.
     

    Shangostar

    MP Donator
  • Premium Supporter
  • December 27, 2009
    438
    125
    Somerset
    Home Country
    United Kingdom United Kingdom
    Nice job mercury, what would be the equivalent in red below for the TV clearart?

    <texture>..\..\..\thumbs\MovingPictures\DVDArt\FullSize\#MovingPictures.SelectedMovie.imdb_id.png</texture>
     
    Last edited:

    m3rcury

    Development Group
  • Team MediaPortal
  • August 12, 2010
    977
    733
    Home Country
    Malta Malta
    Nice job mercury, what would be the equivalent in red below for the TV clearart?

    <texture>..\..\..\thumbs\MovingPictures\DVDArt\FullSize\#MovingPictures.SelectedMovie.imdb_id.png</texture>

    Shangostar, for TV ClearArt, the best way to handle is as follows:

    In TVSeries.SkinSettings.xml change from
    Code:
        <property>
          <name>TVSeries.Play.ClearArt</name>
          <value><![CDATA[thumbs\ClearArt\<Series.ID>.png]]></value>
        </property>
    to
    Code:
        <property>
          <name>TVSeries.Play.ClearArt</name>
          <value><![CDATA[thumbs\TVSeries\ClearArt\FullSize\<Series.ID>.png]]></value>
        </property>

    Also, with version 1.0.0.6, the above MovingPictures path can be set as follows:
    Code:
    <texture>#MovingPictures.DVDArt\#MovingPictures.SelectedMovie.imdb_id.png</textur
     
    Last edited:

    Shangostar

    MP Donator
  • Premium Supporter
  • December 27, 2009
    438
    125
    Somerset
    Home Country
    United Kingdom United Kingdom
    This will only show when media is playing though? similar to the current way of displaying clearart in the pause/info menu in SMP?

    Anyway to have tv clearart visible in listviews etc. when media is not playing?
    #TVSeries.SelectedShow.series.ID.png
    or something similar?
     

    m3rcury

    Development Group
  • Team MediaPortal
  • August 12, 2010
    977
    733
    Home Country
    Malta Malta
    This will only show when media is playing though? similar to the current way of displaying clearart in the pause/info menu in SMP?

    Anyway to have tv clearart visible in listviews etc. when media is not playing?
    #TVSeries.SelectedShow.series.ID.png
    or something similar?

    Shangostar, am not sure about that. It all depends what TVSeries properties are available. Will see what I can fine and "path" properties, similar to the MovingPicture ones, would be needed to simplify the xml code, will make available in a subsequent release of this plugin.
     

    Shangostar

    MP Donator
  • Premium Supporter
  • December 27, 2009
    438
    125
    Somerset
    Home Country
    United Kingdom United Kingdom
    This will only show when media is playing though? similar to the current way of displaying clearart in the pause/info menu in SMP?

    Anyway to have tv clearart visible in listviews etc. when media is not playing?
    #TVSeries.SelectedShow.series.ID.png
    or something similar?

    Shangostar, am not sure about that. It all depends what TVSeries properties are available. Will see what I can fine and "path" properties, similar to the MovingPicture ones, would be needed to simplify the xml code, will make available in a subsequent release of this plugin.


    Cheers, I did try for a while previously to display the clearart with no media playing and couldn't figure it out but my knowledge is very limited.
     

    yoavain

    Extension Dev
  • Premium Supporter
  • May 24, 2009
    427
    467
    47
    Home Country
    Israel Israel
    Would love to see a mod for MovingPictures detail view of StreamedMP. (I use the CoverFlow view so I cannot see the rotating DVD art.)
    Maybe moving the text window a little to the right, and moving the cover a little to left, could make enough room for the rotating DVD?
     

    Shangostar

    MP Donator
  • Premium Supporter
  • December 27, 2009
    438
    125
    Somerset
    Home Country
    United Kingdom United Kingdom
    These are taken from the rounded covers theme for streamedMP

    15-05-01.png

    You can find the full theme HERE
     

    Attachments

    • detailsbg.png
      detailsbg.png
      13.3 KB
    • movingpictures.common.details.mediainfo.xml
      4.6 KB
    • movingpictures.common.details.xml
      27.5 KB

    m3rcury

    Development Group
  • Team MediaPortal
  • August 12, 2010
    977
    733
    Home Country
    Malta Malta
    This will only show when media is playing though? similar to the current way of displaying clearart in the pause/info menu in SMP?

    Anyway to have tv clearart visible in listviews etc. when media is not playing?
    #TVSeries.SelectedShow.series.ID.png
    or something similar?

    Shangostar, am not sure about that. It all depends what TVSeries properties are available. Will see what I can fine and "path" properties, similar to the MovingPicture ones, would be needed to simplify the xml code, will make available in a subsequent release of this plugin.


    Cheers, I did try for a while previously to display the clearart with no media playing and couldn't figure it out but my knowledge is very limited.

    Shangostar, I found the value you need to put in the xml to get the series id.

    #(string.rtrim(#TVSeries.Series.ID)).png

    In my next release will create 2 new properties, #TVSeries.ClearArt and #TVSeries.ClearLogo so that the code becomes as follows:

    Code:
    <texture>#TVSeries.ClearArt\#(string.rtrim(#TVSeries.Series.ID)).png</texture>
    Code:
    <texture>#TVSeries.ClearLogo\#(string.rtrim(#TVSeries.Series.ID)).png</texture>

    Had to include the string.rtrim as when I did #TVSeries.Series.ID.png, it failed!!
     

    Users who are viewing this thread

    Top Bottom