Latest Media Handler v2.4.X.000 (1 Viewer)

ajs

Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    That´s why I don´t have all fields filled for that video - it´s more experimental
    Use label like:
    XML:
    <label>#Play.Current.Artist#(iif(eq(#Play.Current.Album,''),'',string.format(' - {0}',#Play.Current.Album)))#(iif(eq(#Play.Current.Title,''),'',string.format(' - {0}',#Play.Current.Title)))</label>
    and the last line is empty because there are only three entries - maybe the layout could be a bit better
    It is necessary to expand the spacing between lines.
    e.g. move the descriptions a bit down
    It is necessary to add a shadow under the description, or darken the icon under description. :D
     
    Last edited:

    Guzzi

    Retired Team Member
  • Premium Supporter
  • August 20, 2007
    2,161
    747
    @Guzzi @zebons @Orion Hall @titof
    How to get a description of the film, I get a list of films as follows:
    Code:
    List<MFMovie> movies = BaseMesFilms.GetMostRecent( ...
    ... won't be posible without code change in the GetLatest API of MyFilms, as the objects returned do not contain the description, as you already noticed. Once I am back to a working build environment, I can add it. And it is not advised to access the XML directly for several reasons, as this would bypass internal plugin processing (imagine ppl having multiple DBs, states per user, etc.)
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    won't be posible without code change in the GetLatest API of MyFilms, as the objects returned do not contain the description
    Maybe there is a method that returns a description for MFMovie?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    Question, properties:
    Code:
    #latestMediaHandler.tvrecordings.active4.title
    #latestMediaHandler.tvrecordings.active4.genre
    #latestMediaHandler.tvrecordings.active4.startTime
    #latestMediaHandler.tvrecordings.active4.startDate
    #latestMediaHandler.tvrecordings.active4.endTime
    #latestMediaHandler.tvrecordings.active4.endDate
    #latestMediaHandler.tvrecordings.active4.channel
    #latestMediaHandler.tvrecordings.active4.channelLogo
    
    #latestMediaHandler.tvrecordings.scheduled4.title
    #latestMediaHandler.tvrecordings.scheduled4.startTime
    #latestMediaHandler.tvrecordings.scheduled4.startDate
    #latestMediaHandler.tvrecordings.scheduled4.endTime
    #latestMediaHandler.tvrecordings.scheduled4.endDate
    #latestMediaHandler.tvrecordings.scheduled4.channel
    #latestMediaHandler.tvrecordings.scheduled4.channelLogo
    
    #latestMediaHandler.tvrecordings.latest4.thumb
    #latestMediaHandler.tvrecordings.latest4.title
    #latestMediaHandler.tvrecordings.latest4.dateAdded
    #latestMediaHandler.tvrecordings.latest4.genre
    #latestMediaHandler.tvrecordings.latest4.new
    #latestMediaHandler.tvrecordings.latest4.summary
    #latestMediaHandler.tvrecordings.latest4.series
    #latestMediaHandler.tvrecordings.latest4.episode
    #latestMediaHandler.tvrecordings.latest4.episodename
    Work fine or not?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    @catavolt
    You can also add an indicator (#latestMediaHandler........latest[1,2,3].new and #latestMediaHandler........hasnew) for the newly added like:
    upload_2015-11-6_13-53-28.png
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    LatestMediaHandler 2.3.0.48
    * Fix for TV Recordings properties
    + Set the show summary if season summary if not available
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,597
    10,587
    Königstein (Taunus)
    Home Country
    Germany Germany
    Encountered a problem with the latest two versions 2.3.0.48 and 2.3.0.47:
    TVSeries shows always the series thumb (.seriethumb) and not the episode thumb (.thumb) even if latest episodes is selected in config ;)
    Any ideas? ;)
     
    Last edited:

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    TVSeries shows always the series thumb (.seriethumb) and not the episode thumb (.thumb) even if latest episodes is selected in config
    The problem is most likely here:
    if (!localLogos.appendEpImage && (episode[DBOnlineEpisode.cWatched] || !DBOption.GetOptions(DBOption.cHideUnwatchedThumbnail)))
    You have, judging by the screenshots:
    episode[DBOnlineEpisode.cWatched] - false
    According to the settings:
    !DBOption.GetOptions(DBOption.cHideUnwatchedThumbnail) - false
    But what does a variable localLogos.appendEpImage I do not know :(
     
    Last edited by a moderator:

    Users who are viewing this thread

    Top Bottom