• 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 Display the correct information when playing video clips

     
    • 0 Vote(s) - 0 Average

    Display the correct information when playing video clips

    Display the correct information when playing video clips
    SavanFlou
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Austria
    #1
    2024-09-18, 11:44 AM
    Hello,
    I have a little problem with video clips:
    I have some in my library, all the information came from nfo files I created long back ago and they are all perfectly read by Jellyfin, BUT when I look one, the displayed name is not "Artist - Title" but "Album - Title". I triple check the metadata, but everything is fine, it seems Jellyfin chooses the "wrong" information to show.
    Any way to fix that?

    Thanks for the help
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-09-18, 02:14 PM
    What kind of library is this?
    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]
    SavanFlou
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Austria
    #3
    2024-09-18, 04:46 PM
    It is named Music videos in Jellyfin.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-09-18, 05:00 PM (This post was last modified: 2024-09-18, 05:00 PM by TheDreadPirate.)
    Can you share the contents of one of the NFOs for your music videos? I'm looking at the code for rendering a music video library, but I need an example to help me make sense of the code.
    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]
    SavanFlou
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Austria
    #5
    2024-09-18, 10:18 PM
    Here is the code 
    Show Content
    Spoiler
    Code:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <musicvideo>
        <title>Thunderstruck</title>
        <userrating>0</userrating>
        <top250>0</top250>
        <track>-1</track>
        <album>The Razors Edge</album>
        <outline></outline>
        <plot>The song was released as a single in Germany, Australia, and Japan, and peaked at No. 5 on U.S. the Billboard Hot Mainstream Rock Tracks. In 2010, &quot;Thunderstruck&quot; topped Triple M&apos;s Ultimate 500 Rock Countdown in Melbourne, Australia. The top five were all AC/DC songs</plot>
        <tagline></tagline>
        <runtime>4</runtime>
        <thumb preview="http://www.theaudiodb.com/images/media/album/thumb/the-razors-edge-50fb840829816.jpg/preview">http://www.theaudiodb.com/images/media/album/thumb/the-razors-edge-50fb840829816.jpg</thumb>
        <thumb preview="http://assets.fanart.tv/fanart/music/66c662b6-6e2f-4930-8610-912e24c63ed1/albumcover/the-razors-edge-5339df5f351f9.jpg/preview">http://assets.fanart.tv/fanart/music/66c662b6-6e2f-4930-8610-912e24c63ed1/albumcover/the-razors-edge-5339df5f351f9.jpg</thumb>
        <mpaa></mpaa>
        <playcount>4</playcount>
        <lastplayed>2023-08-06</lastplayed>
        <id></id>
        <genre>Hard Rock</genre>
        <videoassettitle></videoassettitle>
        <videoassetid>-1</videoassetid>
        <videoassettype>-1</videoassettype>
        <hasvideoversions>false</hasvideoversions>
        <hasvideoextras>false</hasvideoextras>
        <isdefaultvideoversion>false</isdefaultvideoversion>
        <year>1990</year>
        <status></status>
        <code></code>
        <aired></aired>
        <trailer></trailer>
        <fileinfo>
            <streamdetails>
                <video>
                    <codec>h264</codec>
                    <aspect>1.333333</aspect>
                    <width>480</width>
                    <height>360</height>
                    <durationinseconds>292</durationinseconds>
                    <stereomode></stereomode>
                    <hdrtype></hdrtype>
                </video>
                <audio>
                    <codec>aac</codec>
                    <language>und</language>
                    <channels>2</channels>
                </audio>
            </streamdetails>
        </fileinfo>
        <actor>
            <name>AC/DC</name>
            <role></role>
            <order>0</order>
            <thumb></thumb>
        </actor>
        <artist>AC/DC</artist>
        <resume>
            <position>0.000000</position>
            <total>0.000000</total>
        </resume>
        <dateadded>2013-08-08 16:14:24</dateadded>
    </musicvideo>

    And if I look at the metadata in Jellyfin, they seem to be ok =
    Title=Thunderstruck
    Album=The Razor's Edge
    Artist = AC/DC

    But in the "music video" part of Jellyfin, under its cover and also if I start looking it, for the displayed infomartion on Top left when I move my mouse, The shown information is The Razor's edge - Thunderstruck", So album - Title.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2024-09-19, 02:14 AM
    I happened to have that music video so I popped your NFO in my library and I think I found the element that renders the album name.

       

    I'll do some more research and submit a github report if needed.
    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]
    SavanFlou
    Offline

    Junior Member

    Posts: 8
    Threads: 1
    Joined: 2024 Sep
    Reputation: 0
    Country:Austria
    #7
    2024-09-20, 08:54 AM
    THank you!
    « 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