• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support General Questions HDR Info passed to Kodi

    Pages (4): 1 2 3 4 Next »

     
    • 0 Vote(s) - 0 Average

    HDR Info passed to Kodi

    Swindiff
    Offline

    Member

    Posts: 61
    Threads: 10
    Joined: 2023 Dec
    Reputation: 0
    Country:United Kingdom
    #1
    2023-12-28, 09:42 AM
    Hi
    I use Jellyfin for my Backend server and the Jellyfin for Kodi addon as my clients on my Android Boxes.  I use Aeon Nox Silvo skin in Kodi, a new addition is being able to show the HDR Flag for files which are HDR.  But I have noticed that all my files are showing as SDR.  I have posted on the Kodi forum for the Silvo skin and the suggestion is that maybe Jellyfin is not passing the HDR data to Kodi in a way that allows the flags to be shown correctly.

    Here is a link to my post on the forum with some of the replies from the skin author.

    https://forum.kodi.tv/showthread.php?tid...pid3177090

    Just wondering if this is the case, and is it something that could be easily implemented.

    Cheers
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2023-12-29, 05:16 PM
    Interesting.  The web client states in the "video" line that it detects that it is HDR.  But when I look in the Android TV client there is no HDR tag.  So I'm assuming that is what you are also not seeing in Kodi.

       
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    tmsrxzar
    Offline

    Senior Member

    Posts: 755
    Threads: 6
    Joined: 2023 Nov
    Reputation: 20
    #3
    2023-12-29, 05:56 PM
    you went a long way to find out "this is not supported by the jellyfin for kodi addon"

    the kodi skin in question is using hdrtype which is filled in by kodi from the streamdetails table of the database
    https://github.com/MikeSiLVO/skin.aeon.n....xml#L1680

    but the jellyfin for kodi addon never inserts anything into that field and all entries are "NULL" in the database
    https://github.com/jellyfin/jellyfin-kod...queries.py

    a quick grep of the jellyfin for kodi addon shows no reference to "hdrtype" what-so-ever

    in summary there is no way for the skin to know it's hdr type is dolby vision/hdr/hdr10 when it's not in the database


    raise an issue with the addon on github https://github.com/jellyfin/jellyfin-kodi/issues
    fezster
    Offline

    Junior Member

    Posts: 9
    Threads: 1
    Joined: 2024 Jan
    Reputation: 1
    Country:United Kingdom
    #4
    2024-01-04, 05:41 PM
    This was bothering me so I fixed it. I dont really do open source coding but I created a PR for the changes required (all quite straightforward):

    https://github.com/jellyfin/jellyfin-kodi/pull/804
    1
    tmsrxzar
    Offline

    Senior Member

    Posts: 755
    Threads: 6
    Joined: 2023 Nov
    Reputation: 20
    #5
    2024-01-04, 05:58 PM
    thanks for that fezster
    segovid
    Offline

    Junior Member

    Posts: 11
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    Country:Canada
    #6
    2024-01-05, 02:55 AM
    (2024-01-04, 05:41 PM)fezster Wrote: This was bothering me so I fixed it. I dont really do open source coding but I created a PR for the changes required (all quite straightforward):

    https://github.com/jellyfin/jellyfin-kodi/pull/804

    Thank you so much! Do you think you could also get the 'Dolby Atmos' information passed to Kodi as well ?
    olevelo
    Offline

    Junior Member

    Posts: 17
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #7
    2024-01-07, 12:04 AM
    (2024-01-04, 05:41 PM)fezster Wrote: This was bothering me so I fixed it. I dont really do open source coding but I created a PR for the changes required (all quite straightforward):

    https://github.com/jellyfin/jellyfin-kodi/pull/804

    It's unfortunate that the auto code checks are failing against pre-existing code!  Hope an admin can go in and approve it quickly.  I looked at the code and seemed pretty straightforward.
    mcarlton00
    Offline

    Kodi Addon Maintainer

    Posts: 145
    Threads: 1
    Joined: 2023 Sep
    Reputation: 9
    Country:United States
    #8
    2024-01-07, 01:04 AM
    Code:
    ./jellyfin_kodi/helper/api.py:74:27: E999 IndentationError: unindent does not match any outer indentation level
    1 E999 IndentationError: unindent does not match any outer indentation level
    1

    I haven't had time to actually look into things yet, but this is most definitely not failing on pre-existing code.  It's a bad change introduced in the PR
    olevelo
    Offline

    Junior Member

    Posts: 17
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #9
    2024-01-07, 01:22 AM
    (2024-01-07, 01:04 AM)mcarlton00 Wrote:
    Code:
    ./jellyfin_kodi/helper/api.py:74:27: E999 IndentationError: unindent does not match any outer indentation level
    1 E999 IndentationError: unindent does not match any outer indentation level
    1

    I haven't had time to actually look into things yet, but this is most definitely not failing on pre-existing code.  It's a bad change introduced in the PR

    You're right, that line is 1 character off, can see it in the commit diff.  I was looking at others like the first error which seems to point to line 1, but there's no changes there.  But maybe the error checker just isn't showing the right line number.
    fezster
    Offline

    Junior Member

    Posts: 9
    Threads: 1
    Joined: 2024 Jan
    Reputation: 1
    Country:United Kingdom
    #10
    2024-01-08, 11:19 AM (This post was last modified: 2024-01-08, 11:21 AM by fezster. Edited 1 time in total.)
    Thanks for pointing that out! I've fixed the indentation error. That'll teach me for trying to do these updates in a browser, rather than using a proper development evironment.



    (2024-01-05, 02:55 AM)segovid Wrote:
    (2024-01-04, 05:41 PM)fezster Wrote: This was bothering me so I fixed it. I dont really do open source coding but I created a PR for the changes required (all quite straightforward):

    https://github.com/jellyfin/jellyfin-kodi/pull/804

    Thank you so much! Do you think you could also get the 'Dolby Atmos' information passed to Kodi as well ?

    I had a look at this today. It doesnt look like Atmos is supported in the media codec info. Estuary skin has no icon/label for it.

    Some skins (eg. Aeon Silvo) use the filename to detect Atmos and other 3d audio codecs.
    Pages (4): 1 2 3 4 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode