How does the naming scheme for anime work on Jellyfin? - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: How does the naming scheme for anime work on Jellyfin? (/t-how-does-the-naming-scheme-for-anime-work-on-jellyfin) Pages:
1
2
|
How does the naming scheme for anime work on Jellyfin? - Avatar3379 - 2024-03-16 Hi guys, new guy here. I was just wondering how sonarr should name my files for Jellyfin to recognize them? Is it as seen on their official documentation: "Series Name A S01E01" Or as seen on trash guides: "{Series TitleYear} - S{season:00}E{episode:00} - {absolute:000} - {Episode CleanTitle} [{Custom Formats }{Quality Full}]{[MediaInfo VideoDynamicRangeType]}[{MediaInfo VideoBitDepth}bit]{[MediaInfo VideoCodec]}[{Mediainfo AudioCodec} { Mediainfo AudioChannels}]{MediaInfo AudioLanguages}{-Release Group}" Example: "The Series Title! (2010) - S01E01 - 001 - Episode Title 1 [iNTERNAL HDTV-720p v2][HDR10][10bit][x264][DTS 5.1][JA]-RlsGrp" RE: How does the naming scheme for anime work on Jellyfin? - TheDreadPirate - 2024-03-16 A lot of that stuff at the end is extremely unnecessary. Series Folder Name/"The Series Title! (2010) - S01E01 - 001 - Episode Title 1".mkv Or you could reduce it even further. Here is how I do it and it works like this. Series Folder Name/s01e01.mkv RE: How does the naming scheme for anime work on Jellyfin? - bitmap - 2024-03-16 Here's mine, which works with Jellyfin. I avoid absolute episode numbers because many specials and even some one-shots/OVAs lack absolutes in TVDB. Code: {Series TitleYear} - S{season:00}E{episode:00} - {Episode CleanTitle} [{Quality Title} {MediaInfo VideoCodec}{ MediaInfo VideoDynamicRangeType}{ MediaInfo VideoBitDepth}bit { Mediainfo AudioCodec} { Mediainfo AudioChannels}]{MediaInfo AudioLanguagesAll:EN+JA+}{MediaInfo SubtitleLanguages:EN+}{-Release Group} RE: How does the naming scheme for anime work on Jellyfin? - Avatar3379 - 2024-03-16 @TheDreadPirate Does "S01E01" work 100% of the time? @bitmap Could you provide an example? RE: How does the naming scheme for anime work on Jellyfin? - bitmap - 2024-03-16 Here's a full path example: Code: /media/core/series/Armored Trooper VOTOMS (1983) [90521]/Season 01/Armored Trooper VOTOMS (1983) - S01E01 - Wars End [Bluray-1080p AV1 10bit Opus 2.0][EN+JA][EN]-nAV1s.mkv Since it's part of ensuring things are found correctly, you can add an ID of your choice to the folder naming convention in advanced settings: Code: {Series TitleYear} [{TvdbId}] Following the naming scheme in Jellyfin's docs exactly, this would be: Code: {Series TitleYear} [tvdbid-{TvdbId}] It works for me without the tvdbid- part, so I omit it since names can get a bit long... RE: How does the naming scheme for anime work on Jellyfin? - TheDreadPirate - 2024-03-16 AFAICT, if the folder has the show name the file simply needs the season and episode number. Heck, season folders don't seem 100% necessary either so I don't use those either. Code: chris@rat-trap:/media/library/TV Shows/Samurai Jack (2001)$ ll Same goes for Specials. If the file is "s00" it will still be treated like a special even if it isn't in a Specials folder. RE: How does the naming scheme for anime work on Jellyfin? - bitmap - 2024-03-16 I believe you're correct, the naming conventions call four uniformity for the most part. You can't have some season folders and not others for a show. The tvdb ID is listed as a tip in the Jellyfin docs. The rest of it is preference for me. You can ditch whatever you like, however, I like this setup for management purposes as well as re-/encoding. It's a clear indicator of processing, makes it easy to see at a glance whether I've brought media in line with my standards, and also can help in case I make a mistake somewhere along the line. I'm being vague as to not further any verboten discussion. There's a difference between "to spec" and functional in this case IMO. RE: How does the naming scheme for anime work on Jellyfin? - Avatar3379 - 2024-03-17 @bitmap Does the episode names show correctly this way or does it only show as "Episode 1"? @TheDreadPirate Do you have correct episode names too and does that naming scheme work for anime if you have any in your library? Also, what plugin are you using for Chromecast? RE: How does the naming scheme for anime work on Jellyfin? - TheDreadPirate - 2024-03-17 Works with anime. All metadata is scrapped as expected. RE: How does the naming scheme for anime work on Jellyfin? - Avatar3379 - 2024-03-20 @TheDreadPirate One last question. Do you start at episode 1 for every season or do you name them like "S04E354"? Especially One Piece does this to keep track of which episode you're on. |