• 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 Troubleshooting Media Scanning & Identification SOLVED: Non-english metadata

     
    • 0 Vote(s) - 0 Average

    SOLVED: Non-english metadata

    Characters are not displaying correctly
    winterhymnal11
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #1
    2023-06-20, 11:57 PM
    Please take a look in the screenshot. You can see that the characters are not coming out correctly. However, they do display correctly in the path. Can someone give me a direction on how to fix this issue or edit them quickly? There are too many to do one by one. 

    Thank you!


    Attached Files Thumbnail(s)
       
    Go to solution
    Venson
    Offline

    Moderator, Server Dev, XBox Maintainer

    Posts: 378
    Threads: 7
    Joined: 2023 Jun
    Reputation: 15
    Country:Germany
    #2
    2023-06-21, 08:18 AM
    What metadata Provider did you use to identify this audio?
    typos are finders, keepers.
    Next Jellyfin release 10.11.0 will be Soon™
    Soon™ is an unregistered trademark of Jellyfin International
    winterhymnal11
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #3
    2023-06-22, 01:26 PM (This post was last modified: 2023-06-22, 01:29 PM by winterhymnal11. Edited 1 time in total.)
    Initially, I imported the music files into the location and scanned the library with Musicbrainz and TheAudioDB. Then I deleted the files, and re-scanned the library with one and then repeated with the other. I deleted the files and re-scanned again with both metadata off. All options yielded the same result. When I search the metadata database manually in "identify", the correct metadata does show up.
    Venson
    Offline

    Moderator, Server Dev, XBox Maintainer

    Posts: 378
    Threads: 7
    Joined: 2023 Jun
    Reputation: 15
    Country:Germany
    #4
    2023-06-22, 01:31 PM
    (2023-06-22, 01:26 PM)winterhymnal11 Wrote: Initially, I imported the music files into the location and scanned the library with Musicbrainz and TheAudioDB. Then I deleted the files, and re-scanned the library with one and then repeated with the other. I deleted the files and re-scanned again with both metadata off. All options yielded the same result. When I search the metadata database manually in "identify", the correct metadata does show up.

    Well i have some issues copying the name of the album, could you check on  Home | TheAudioDB.com if the data is actually there and correctly formatted? I assume this might be an issue with the charset the albums data and it does not like them.
    typos are finders, keepers.
    Next Jellyfin release 10.11.0 will be Soon™
    Soon™ is an unregistered trademark of Jellyfin International
    winterhymnal11
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #5
    2023-06-22, 01:38 PM
    Ok, I see that not all the albums are available. I see on MusicBrainz, most albums are available: Владимир Высоцкий. Is there a way to ignore the metadata and just take the information from the file names? Because that is all I want. I don't care if they are not "synced" to a metadata database.
    Venson
    Offline

    Moderator, Server Dev, XBox Maintainer

    Posts: 378
    Threads: 7
    Joined: 2023 Jun
    Reputation: 15
    Country:Germany
    #6
    2023-06-22, 02:06 PM
    (2023-06-22, 01:38 PM)winterhymnal11 Wrote: Ok, I see that not all the albums are available. I see on MusicBrainz, most albums are available: Владимир Высоцкий. Is there a way to ignore the metadata and just take the information from the file names? Because that is all I want. I don't care if they are not "synced" to a metadata database.

    Sure just disable the metadata Downloaders in your library
    typos are finders, keepers.
    Next Jellyfin release 10.11.0 will be Soon™
    Soon™ is an unregistered trademark of Jellyfin International
    winterhymnal11
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #7
    2023-06-22, 02:11 PM
    Unfortunately, that's not working either. Here are the steps I've taken: 

    1. Deleted the audio files from the library
    2. Re-scanned the library (no longer in Jellyfin)
    3. Deleted the metadata files from var/lib/jellyfin/metadata
    4. Un-checked/disabled all metadata providers from my music library (see screenshots)
    5. Copied files back into library
    6. Re-scan
    7. Metadata is still not from the filenames


    Attached Files Thumbnail(s)
           
    Venson
    Offline

    Moderator, Server Dev, XBox Maintainer

    Posts: 378
    Threads: 7
    Joined: 2023 Jun
    Reputation: 15
    Country:Germany
    #8
    2023-06-22, 02:21 PM
    (2023-06-22, 02:11 PM)winterhymnal11 Wrote: Unfortunately, that's not working either. Here are the steps I've taken: 

    1. Deleted the audio files from the library
    2. Re-scanned the library (no longer in Jellyfin)
    3. Deleted the metadata files from var/lib/jellyfin/metadata
    4. Un-checked/disabled all metadata providers from my music library (see screenshots)
    5. Copied files back into library
    6. Re-scan
    7. Metadata is still not from the filenames

    Oh no, metadata is not pulled from the filename but from the embedded fields of the media file.
    typos are finders, keepers.
    Next Jellyfin release 10.11.0 will be Soon™
    Soon™ is an unregistered trademark of Jellyfin International
    winterhymnal11
    Offline

    Junior Member

    Posts: 5
    Threads: 1
    Joined: 2023 Jun
    Reputation: 0
    #9
    2023-06-22, 04:38 PM
    Ok I understand now. I ended up fixing the metadata tags using a python script. Works like a charm now!

    Code:
    import eyed3
    from pathlib import Path
    from glob import glob

    directory = "./music/Высоцкий Владимир"

    results = glob(directory + '/**/*.mp3',recursive = True)

    for path in results:
        print("\n", path)

        album = Path(path).parts[2]
        title = Path(path).parts[3]

        audiofile = eyed3.load(path)
        audiofile.tag.album = album
        audiofile.tag.title = title
        audiofile.tag.artist = "Владимир Высоцкий"
        audiofile.tag.save(encoding="utf-8")
    « 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