• 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 Multi Disk Album Track Numbers

     
    • 0 Vote(s) - 0 Average

    Multi Disk Album Track Numbers

    Some albums not showing multiple disks
    CleverId10t
    Offline

    Junior Member

    Posts: 22
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #1
    2024-10-20, 11:58 AM
    On the current 10.10 beta Docker release on Ubuntu 22.04 with HWE kernel 

    All testing is on a completely clean instance with no additional plugins installed and with a test library.

    My music collection is from CD's ripped to Flac with Exact Audio Copy, and then tagged via Picard using the below "script"

    %album% $if2(%catalognumber%,%barcode%,%asin%)/
    $if($gt(%totaldiscs%,1),%discnumber%-,)
    $if($and(%albumartist%,%tracknumber%),$num(%tracknumber%,2) ,)
    $if(%_multiartist%,%artist% - ,)
    %title%

    I'm seeing some albums where the multiple disks are shown correctly in Jellyfin, but for others the multiple disks are not shown but instead, the name of one of the CD's is shown

    As an example https://musicbrainz.org/release/904a281b...6777e48aa0 is shown as "Tracid Traxx Compilation Vol. 2 CD 1" and has a single track listing with duplicate track 1, track 2 etc.

    From the Jellyin logs, I see "Discarding ID3 tags because more suitable tags were found.", but no errors.

    It is possible to manually edit the metadata of each track in Jellyfin, but I would prefer to find an automated method if at all possible.

    To be able to provide a sample of all of the tracks, I tried chopping all bar the first 5 seconds of audio of all of the tracks with the below (from a shell in the Jellyfin docker container using the Jellyfin ffmpeg), but the chopped versions does not display the issue!

    Code:
    for f in *.flac; do /usr/lib/jellyfin-ffmpeg/ffmpeg -i "$f" -ss 0 -t 5 -c copy "chopped/${f%.flac}.flac"; done

    Any suggestions on how to progress with this would be welcomed.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-10-20, 04:25 PM
    Is Picard tagging both the "standard" fields and the ID3 fields?
    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]
    CleverId10t
    Offline

    Junior Member

    Posts: 22
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #3
    2024-10-20, 05:22 PM
    Within Docker I ran

    Code:
    /usr/lib/jellyfin-ffmpeg/ffprobe -v quiet -of json -show_entries format /Demo/Tracid\ Traxxx\ Volume\ 2\ -\ Three\ Years\ of\ Tracid\ Traxxx\ TTX\ CD\ 02/2-01\ Kai\ Tracid\ -\ Your\ Own\ Reality.flac > 2-01.json

    Which after truncating the data in the TRACTOR4 line, looks like the below (without the additional line spacing that appears to be added by the "code" formatting).

    Code:
    {
        "format": {
            "filename": "/Demo/Tracid Traxxx Volume 2 - Three Years of Tracid Traxxx TTX CD 02/2-01 Kai Tracid - Your Own Reality.flac",
            "nb_streams": 1,
            "nb_programs": 0,
            "nb_stream_groups": 0,
            "format_name": "flac",
            "format_long_name": "raw FLAC",
            "start_time": "0.000000",
            "duration": "442.746667",
            "size": "53610608",
            "bit_rate": "968691",
            "probe_score": 100,
            "tags": {
                "MUSICBRAINZ_ALBUMID": "904a281b-bc73-4984-8e4e-ec6777e48aa0",
                "ALBUMARTISTSORT": "Various Artists",
                "ARTISTSORT": "Tracid, Kai",
                "ORIGINALYEAR": "2001",
                "CATALOGNUMBER": "TTX CD 02",
                "RELEASETYPE": "album;compilation",
                "album_artist": "Various Artists",
                "BARCODE": "4014235200216",
                "RELEASECOUNTRY": "DE",
                "disc": "2",
                "MUSICBRAINZ_RELEASETRACKID": "dbad9581-29ba-4767-99d3-4dfe3bf0a843",
                "track": "1",
                "TRAKTOR4": "dlVH)(+DC\"AAAA4wlZhtBAC\"BAAA::<snipped for brevity>",
                "MUSICBRAINZ_TRACKID": "daab3030-562b-4d12-82e3-ab64f7dd72e3",
                "SCRIPT": "Latn",
                "MEDIA": "CD",
                "TITLE": "Your Own Reality",
                "ARTISTS": "Kai Tracid",
                "TOTALTRACKS": "11",
                "INITIALKEY": "3d",
                "LABEL": "Tracid Traxxx",
                "BPM": "140",
                "MUSICBRAINZ_ALBUMARTISTID": "89ad4ac3-39f7-470e-963a-56509c546377",
                "MUSICBRAINZ_ARTISTID": "6546b116-81c8-4783-9219-19f6e8f3c020",
                "DATE": "2001-05-14",
                "ORIGINALDATE": "2001-05-14",
                "MUSICBRAINZ_RELEASEGROUPID": "6ee84f24-6896-46f9-8418-1a3cd68e42e5",
                "COMPILATION": "1",
                "GENRE": "Other",
                "ARTIST": "Kai Tracid",
                "TOTALDISCS": "2",
                "ALBUM": "Tracid Traxxx Volume 2 - Three Years of Tracid Traxxx",
                "TRACKTOTAL": "11",
                "DISCTOTAL": "2"
            }
        }
    }
    CleverId10t
    Offline

    Junior Member

    Posts: 22
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #4
    2024-10-22, 05:51 PM
    Hi @TheDreadPirate did I misunderstand your question?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #5
    2024-10-22, 06:04 PM
    You didn't, but I also don't have an answer. Technically FLAC doesn't support ID3v2 tags. But I am pretty sure Picard will automatically use proper FLAC supported tags, which appears to be the case.

    Check the open/closed github issues, and if there aren't any for your issue you can create a new one.

    https://github.com/jellyfin/jellyfin/issues
    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]
    CleverId10t
    Offline

    Junior Member

    Posts: 22
    Threads: 4
    Joined: 2023 Jun
    Reputation: 0
    #6
    2024-10-23, 05:19 PM
    Tried Github, don't think that issue was understood )-:
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2024-10-23, 07:43 PM
    Let's gather a bit more info?

    How are your files organized? Can you provide some examples from multi-disc albums that are working and some examples of albums that are not working?
    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]
    « 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