• 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
    #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: 2 Guest(s)


    Messages In This Thread
    Non-english metadata - by winterhymnal11 - 2023-06-20, 11:57 PM
    RE: Non-english metadata - by Venson - 2023-06-21, 08:18 AM
    RE: Non-english metadata - by winterhymnal11 - 2023-06-22, 01:26 PM
    RE: Non-english metadata - by Venson - 2023-06-22, 01:31 PM
    RE: Non-english metadata - by winterhymnal11 - 2023-06-22, 01:38 PM
    RE: Non-english metadata - by Venson - 2023-06-22, 02:06 PM
    RE: Non-english metadata - by winterhymnal11 - 2023-06-22, 02:11 PM
    RE: Non-english metadata - by Venson - 2023-06-22, 02:21 PM
    RE: Non-english metadata - by winterhymnal11 - 2023-06-22, 04:38 PM

    • 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