PureVisionHD 1080 (2 Viewers)

catavolt

Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,485
    10,498
    Königstein (Taunus)
    Home Country
    Germany Germany
    Regarding the hdr logo: Just downloaded a hdr file from youtube, but the codec shown is not hdr, but vp9 ;)
     

    biship

    Portal Pro
    June 14, 2008
    94
    36
    VP9 is a Video Coding Format. A VP9 file may or may not be in HDR format.
    A lot of modern H.265 videos are HDR (some are not!).
    Go here: https://kodi.wiki/view/Samples
    Download: HDR 10-bit HEVC 24fps (in MP4, 'Exodus' sample)
    It's a HEVC MPEG-4 video that is HDR10.
    Mediainfo will report this as HVEC (H.265) with HDR10, but for HDR information, MovingPictures does not store anything other then HDR:TRUE
    So all you can really display in your skin in H.265 & 'HDR'. (and not HDR10 or HDR10+ or DV)

    General
    Complete name : (HDR HEVC 10-bit BT.2020 24fps) Exodus Sample.mp4
    Format : MPEG-4
    Format profile : Base Media
    Codec ID : isom (isom/iso2/mp41)
    File size : 246 MiB
    Duration : 47 s 787 ms
    Overall bit rate mode : Variable
    Overall bit rate : 43.2 Mb/s
    Frame rate : 24.000 FPS
    Writing application : Lavf56.15.103

    Video
    ID : 1
    Format : HEVC
    Format/Info : High Efficiency Video Coding
    Format profile : Main 10@L5.1@High
    HDR format : SMPTE ST 2086, HDR10 compatible
    Codec ID : hev1
    Codec ID/Info : High Efficiency Video Coding
    Duration : 47 s 750 ms
    Bit rate : 42.8 Mb/s
    Width : 3 840 pixels
    Height : 2 160 pixels
    Display aspect ratio : 16:9
    Frame rate mode : Constant
    Frame rate : 24.000 FPS
    Original frame rate : 23.976 (24000/1001) FPS
    Color space : YUV
    Chroma subsampling : 4:2:0 (Type 2)
    Bit depth : 10 bits
    Bits/(Pixel*Frame) : 0.215
    Stream size : 244 MiB (99%)
    Writing library : ATEME Titan KFE 3.7.0 (4.7.0.2002)
    Color range : Limited
    Color primaries : BT.2020
    Transfer characteristics : PQ
    Matrix coefficients : BT.2020 non-constant
    Mastering display color primar : Display P3
    Mastering display luminance : min: 0.0200 cd/m2, max: 1200 cd/m2
    Codec configuration box : hvcC
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,485
    10,498
    Königstein (Taunus)
    Home Country
    Germany Germany
    Download: HDR 10-bit HEVC 24fps (in MP4, 'Exodus' sample)
    Shows codec H265 HEVC ;)

    21-56-12.jpg
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,485
    10,498
    Königstein (Taunus)
    Home Country
    Germany Germany
    Perhaps re-read my post.
    Well. I did read your port carefully ;)
    What I wanted to show with the screenshot is that there is no way (atm) to display a HDR logo.
    MP only has properties for video resolution and video codec.
    There is no way (atm) to read (and display) the Transfer characteristics:
    • PQ (or SMPTE ST 2084): the basis of HDR video formats (such as HDR10, HDR10+ and Dolby Vision)
    • or HLG (most commonly found in broadcasting)
    Hope this clarifies why those icons are and will be missing until a dev decides to add this ;)
     

    framug

    Super Moderator
  • Team MediaPortal
  • January 31, 2005
    6,002
    2,097
    South of France
    Home Country
    France France
    Hello,

    Found other settings button missing when go to settings_videos :

    zz1.png

    C#:
        [SkinControl(43)] protected GUIButtonControl btnOtherSettings = null;

    Log :

    .....
    [2024-06-08 10:35:35,746] [Log ] [MPMain ] [WARN ] - GUIWindow:OnWindowLoaded: 'D:\NUC11\Documents\Team MediaPortal\MediaPortal\Skin\PureVisionHD 1080\settings_MyVideos.xml' is missing control id 43 (window property: btnOtherSettings)
    [2024-06-08 10:35:35,750] [Log ] [MPMain ] [WARN ] - GUIWindow:OnWindowLoaded: 'D:\NUC11\Documents\Team MediaPortal\MediaPortal\Skin\PureVisionHD 1080\settings_MyVideos.xml' is missing control id 43 (window property: btnOtherSettings)
    .....
     

    catavolt

    Design Group Manager
  • Team MediaPortal
  • August 13, 2007
    14,485
    10,498
    Königstein (Taunus)
    Home Country
    Germany Germany
    Found other settings button missing
    Hmm, tried to find out what this button does and checked in other skins (Titan, Ares, StreamedMP, Maya etc.) - none of them has that button, and in Wiki there is no info about it :confused:

    EDIT: Found it - will do the formatting and report back ;)
     
    Last edited:

    framug

    Super Moderator
  • Team MediaPortal
  • January 31, 2005
    6,002
    2,097
    South of France
    Home Country
    France France
    Hmm, tried to find out what this button does and checked in other skins (Titan, Ares, StreamedMP, Maya etc.) - none of them has that button, and in Wiki there is no info about it :confused:
    Normally, it goes into the 1023 windows, the "settings_MyVideos_OtherSettings.xml" file :

    C#:
        private void OnOtherSettings()
        {
          GUISettingsMoviesOther dlg = (GUISettingsMoviesOther)GUIWindowManager.GetWindow((int)Window.WINDOW_SETTINGS_VIDEOOTHERSETTINGS);
          if (dlg == null)
          {
            return;
          }
          GUIWindowManager.ActivateWindow((int)Window.WINDOW_SETTINGS_VIDEOOTHERSETTINGS);
        }

    wich has at least 3 buttons :

    C#:
        [SkinControl(2)] protected GUICheckButton btnMarkWatched = null;
        [SkinControl(3)] protected GUICheckButton btnKeepFoldersTogether = null;
        [SkinControl(4)] protected GUICheckButton btnCommercialSkip = null;
     

    Users who are viewing this thread

    Top Bottom