Radarr: Consider supporting {tags} for renaming (Allowing "Extended,Uncut,Director's Cut, etc" when renaming)

Created on 9 Jan 2017  路  3Comments  路  Source: Radarr/Radarr

Basically offering the same functionality as "FileBot"

see here for a list of "tags": https://github.com/filebot/filebot/blob/72da7935bfbd498b92aa44674806127f8b850a3f/source/net/filebot/media/ReleaseInfo.properties#L4-L5

and here for how they normalise them:

    @Define("tags")
    public List<String> getVideoTags() {
        // look for video source patterns in media file and it's parent folder (use inferred media file)
        List<String> matches = releaseInfo.getVideoTags(getFileNames(getInferredMediaFile()));
        if (matches.isEmpty()) {
            return null;
        }

        // heavy normalization for whatever text was captured with the tags pattern
        return matches.stream().map(s -> {
            return lowerTrail(upperInitial(normalizePunctuation(s)));
        }).sorted().distinct().collect(toList());
    }
enhancement low

Most helpful comment

In a perfect world I would love to see the Movies detail page look like this:

Where we have Tags as Titlecase and shown with a "badge" style vs. tooltip, and then have [Extended] etc in the filenames.

image

All 3 comments

Adding this here since I don't think it's worthy of it's own issue but can we also get just "more" options for naming? For example, all my existing media is in the format of "Title (Year) [Resolution]/Title (Year) [Resolution] [Codec].ext" because I'm not (too) picky on whether it's BluRay-1080p or a WebDL.

In a perfect world I would love to see the Movies detail page look like this:

Where we have Tags as Titlecase and shown with a "badge" style vs. tooltip, and then have [Extended] etc in the filenames.

image

Fixed in latest commit.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

wolrah picture wolrah  路  4Comments

davidbonnici1984 picture davidbonnici1984  路  4Comments

willmonahan picture willmonahan  路  4Comments

NewUser9 picture NewUser9  路  3Comments

scope999 picture scope999  路  3Comments