Multi Disk Album Track Numbers - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Media Scanning & Identification (https://forum.jellyfin.org/f-media-scanning-identification) +---- Thread: Multi Disk Album Track Numbers (/t-multi-disk-album-track-numbers) |
Multi Disk Album Track Numbers - CleverId10t - 2024-10-20 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-bc73-4984-8e4e-ec6777e48aa0 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. RE: Multi Disk Album Track Numbers - TheDreadPirate - 2024-10-20 Is Picard tagging both the "standard" fields and the ID3 fields? RE: Multi Disk Album Track Numbers - CleverId10t - 2024-10-20 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: { RE: Multi Disk Album Track Numbers - CleverId10t - 2024-10-22 Hi @TheDreadPirate did I misunderstand your question? RE: Multi Disk Album Track Numbers - TheDreadPirate - 2024-10-22 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 RE: Multi Disk Album Track Numbers - CleverId10t - 2024-10-23 Tried Github, don't think that issue was understood )-: RE: Multi Disk Album Track Numbers - TheDreadPirate - 2024-10-23 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? |