Jellyfin: Exclude m3u playlist files from media library scan

Created on 21 Feb 2019  路  2Comments  路  Source: jellyfin/jellyfin

Hey,
Is your feature request related to a problem? Please describe.

when indexing my music archive, there are also a lot m3u playlist files included in the album folders. But I don't want Jellyfin to index and include them into the playlist section. Otherwise the playlist section is full of album playlists and I cannot find my own custom playlists.

Describe the solution you'd like

Option to exclude m3u and playlist files from library indexing.

Describe alternatives you've considered

Additional context

Best regards,
Jonas

enhancement

Most helpful comment

Dirty hack to disable playlist detection, remove all known playlist file extensions in MediaBrowser.Controller/Playlists/Playlist.cs:

        public static string[] SupportedExtensions =
            {
                ".none"
            };

Custom playlists stored in data/playlists will still be available :)

All 2 comments

Dirty hack to disable playlist detection, remove all known playlist file extensions in MediaBrowser.Controller/Playlists/Playlist.cs:

        public static string[] SupportedExtensions =
            {
                ".none"
            };

Custom playlists stored in data/playlists will still be available :)

We are moving all feature and enhancement requests to our new Fider platform here. This new platform lets people vote on and better manage such requests.
This request now lives here.

Was this page helpful?
0 / 5 - 0 ratings