Latest Media Handler v2.4.X.000 (4 Viewers)

Brudertac

MP Donator
  • Premium Supporter
  • October 26, 2006
    978
    277
    Augsburg
    Home Country
    Germany Germany
    Hm, with 2.3.0.34 it shows new latest Music. But what it shows is not the latest Music that has been added. Is that a wrong setting?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #32
    But what it shows is not the latest Music that has been added. Is that a wrong setting?
    In settings - Music Type: Latest Added Music ...
    In log:
    Code:
    21-Sep-2015 19:18:22  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 1: Volbeat - Outlaw Gentlemen & Shady Ladies
    21-Sep-2015 19:18:22  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 2: The Script - #3
    21-Sep-2015 19:18:22  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 3: Queen - Queen Forever
    SQL query on a database of music, you can perform?
    Code:
    select distinct strAlbumArtist, strAlbum, dateAdded, strGenre, RTRIM(strPath,REPLACE(strPath,'\','')) as strPath from tracks order by dateAdded desc limit 10;
     
    Last edited:

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #33
    Latest Media Handler version is 2.3.0.34 (Beta)
    Completely reworked source code. But it is necessary to check whether it will work. What I have, I checked works. But I do not have a tuner, moving pictures, etc.
     
    Last edited:

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,596
    10,582
    Königstein (Taunus)
    Home Country
    Germany Germany
    But it is necessary to check whether it will work. What I have, I checked works. But I do not have a tuner, moving pictures, etc.
    Just made a fast test: Latest played music shows correct, but clicking on one of the albums does not play it. myvideo, mvCentral, TV Recordings, TV Series work perfect (so far :D) MovingPictures does not show ;)
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #35
    Music Played ... Music Type: Latest Played Music
    Code:
    22-Sep-2015 00:09:57  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 1: ТіК - тиХИЙ
    22-Sep-2015 00:09:57  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 2: ТіК - Весільний
    22-Sep-2015 00:09:57  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 3: Океан Ельзи - Найкраще
    ...
    22-Sep-2015 00:16:45  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 1: Скрябін - Добряк
    22-Sep-2015 00:16:45  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 2: ТіК - тиХИЙ
    22-Sep-2015 00:16:45  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 3: ТіК - Весільний
    ...
    22-Sep-2015 00:49:54  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 1: Мандри - Легенда про Iвана і Одарку
    22-Sep-2015 00:49:54  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 2: Скрябін - Добряк
    22-Sep-2015 00:49:54  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 3: ТіК - тиХИЙ
    ...
    22-Sep-2015 00:53:16  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 1: Мандри - Дорога
    22-Sep-2015 00:53:16  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 2: Мандри - Легенда про Iвана і Одарку
    22-Sep-2015 00:53:16  Info [  LatestMusicHandler]: Updating Latest Media Info: Latest music album 3: Скрябін - Добряк
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #37
    @catavolt
    Code:
        public const int ControlID = 919199970;
        public const int Play1ControlID = 91919997;
        public const int Play2ControlID = 91919998;
        public const int Play3ControlID = 91919999;
    This right controls for the music?
    Do not play how? Gives an error message? Or just not playing?
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,596
    10,582
    Königstein (Taunus)
    Home Country
    Germany Germany
    public const int Play1ControlID = 91919997;
    public const int Play2ControlID = 91919998;
    public const int Play3ControlID = 91919999;

    Those are correct ;)

    public const int ControlID = 919199970 I don´t have nowhere :confused:

    Do not play how? Gives an error message? Or just not playing?
    They just don´t play - no error message on screen nor in logs.
    Latest log attached (there you can also see the error for MovingPictures (Null reference)) ;)
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    16,039
    11,112
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #39
    atest log attached (there you can also see the error for MovingPictures (Null reference)) ;)
    Copy the error in the spoiler, but I can not immediately see the log.

    ControlID = 919199970 I don´t have nowhere
    Try set ID for Music facade ...
    1. <control>
    2. ...
    3. <type>facadeview</type>
    4. <id>919199970</id>
    5. ...
    https://code.google.com/p/latestmed...mple_Of_Filmstrip_Facade_(For_Moving_Picture)
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,596
    10,582
    Königstein (Taunus)
    Home Country
    Germany Germany
    I don´t use faceadeview ;)
    And in your last LMH before the rework it worked perfect ;)
    Here the error for MovPic:
    22-Sep-2015 09:36:53 Error [LatestMovingPictures]: GetLatestMovingPictures: System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
    bei LatestMediaHandler.LatestMovingPicturesHandler.GetLatestMovingPictures()
     

    Users who are viewing this thread

    Top Bottom