Jellyfin Forum
Way to determine which movie version Jellyfin will use as default? - 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: Way to determine which movie version Jellyfin will use as default? (/t-way-to-determine-which-movie-version-jellyfin-will-use-as-default)



Way to determine which movie version Jellyfin will use as default? - Jokey665 - 2024-06-02

For example, say I have

Movie (20XX)\
   Movie (20XX) - [Director's Cut].mkv
   Movie (20XX) - [Theatrical Cut].mkv

and in jellyfin, the theatrical cut is automatically chosen as the default when playing the movie or going to the movie's page when I would prefer the director's cut. 

Is there a way to influence what is the default? The documentation states that they're ordered alphabetically and the first in the list is chosen as default, but I have at least one instance where that is not the case.


RE: Way to determine which movie version Jellyfin will use as default? - visualblind - 2024-06-09

(2024-06-02, 01:44 AM)Jokey665 Wrote: For example, say I have

Movie (20XX)\
   Movie (20XX) - [Director's Cut].mkv
   Movie (20XX) - [Theatrical Cut].mkv

and in jellyfin, the theatrical cut is automatically chosen as the default when playing the movie or going to the movie's page when I would prefer the director's cut. 

Is there a way to influence what is the default? The documentation states that they're ordered alphabetically and the first in the list is chosen as default, but I have at least one instance where that is not the case.

Seems that the code that dealt with ordering must have changed from 10.8.13 > 10.9.3 regarding the default selected when employing multiple versions of a movie.
Back on 10.8.13 I typically used the method you described but simply preceded the bracketed label with numbers in decreasing priority. This way of trying to influence default order by manipulating the file name no longer works and it is being determined first by the choosing the media with largest resolution (metadata jellyfin obtains via ffprobe), and if resolution is identical I would assume it falls back to filename ordering.

Example which no longer works:

2023 Wimbledon Final Carlos Alcaraz vs Novak Djokovic/
├── 2023 Wimbledon Final Carlos Alcaraz vs Novak Djokovic - 1[720p 50fps H264].mp4
└── 2023 Wimbledon Final Carlos Alcaraz vs Novak Djokovic - 2[1080p 25fps H264].mp4

From the filenames above I was trying to force the default selected to be the 720p version, but since 1080p is a larger resolution that version will be the default regardless of what anyone else actually wants. I can understand the reason they changed it, but I feel it's taking too much control out of the hands of site owners.