Search found 10 matches

by DigidocTN
06 Aug 2025, 22:00
Forum: Help and Support
Topic: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k
Replies: 7
Views: 20083

Re: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k

Thanks for the help, my renaming of movies is about perfect. After the naming is complete, is it possible to examine all the files in a folder, and -if- they do not include a defined year (2019); then move only those to another folder to examine then further?Perhaps to ask the year first, insert it ...
by DigidocTN
05 Aug 2025, 09:56
Forum: Help and Support
Topic: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k
Replies: 7
Views: 20083

Expression within { }

I continue to try and learn. Each expression included within { } is a standalone, right? Is there a list of the published meta characters which can be used? For instance, t. is title; n. is name; s. is season, e. is episode and so on. Is there a list of all available codes? What are the codes for ...
by DigidocTN
05 Aug 2025, 09:12
Forum: Help and Support
Topic: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k
Replies: 7
Views: 20083

Articles: A, An, The removed from front of title

I almost forgot. Add articles A,an,the to the end of the title. I managed to lose the code to change the title.
i.e. To change this:

The curse of bridge hollow (2022).mkv

into this instead:

Curse Of Bridge Hollow, The (2022)[Adventure, Comedy, Horror, Family]-[4K].mkv
by DigidocTN
05 Aug 2025, 08:25
Forum: Help and Support
Topic: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k
Replies: 7
Views: 20083

Add Capitalization of name, genre, resolution, and encoding

{n.colon(' - ')} ({y}){subt}{ if (width >= 3840 || height >= 2160) return " [4K]" if (width >= 1280 || height >= 720) return " [HD]" return " [SD]" } This works. How can I add Capitalize Each Word In Name and add [genre of movie] after the name? Also, if the encoding is not HEVC, add [Not HEVC] to ...
by DigidocTN
28 Jul 2025, 14:54
Forum: Help and Support
Topic: below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k
Replies: 7
Views: 20083

below 720 as SD; 720p or 1080p as HD, and to show resolution of 2160p as 4k

I have been using Filebot for 3 years now. I also have dementia so cannot think as well as when I was younger. My renaming needs are simple. For TV shows, I use the following expression: {n} {s.pad(2)}x{e.pad(2)} {t.upperInitial()} {" [$vf]"} { if (vcf != /HEVC/) ' [NOT HEVC]' } Today, my name ...
by DigidocTN
15 Jul 2025, 15:46
Forum: Episode / Movie Naming Scheme
Topic: I get: Gabby Hayes Show (1956), The
Replies: 1
Views: 18200

I get: Gabby Hayes Show (1956), The

Again, almost perfect. { n.replaceFirst(/^(?i)(The|A|An)\s(.+)/, /$2, $1/) }

I have a show: The Gabby Hayes Show (1956) and using the code above, I get: Gabby Hayes Show (1956), The.

Is it possible to insert The before the date (1956) instead of after?
by DigidocTN
15 Jul 2025, 15:24
Forum: Episode / Movie Naming Scheme
Topic: [{vc}] IF it is using h.264
Replies: 2
Views: 16849

Re: [{vc}] IF it is using h.264

Perfect! I like your suggestion { if (vcf != /HEVC/) ' [NOT HEVC]' } better than mine. I do not care what the resolution is, only that I need to compress with HEVC.
by DigidocTN
15 Jul 2025, 14:13
Forum: Episode / Movie Naming Scheme
Topic: [{vc}] IF it is using h.264
Replies: 2
Views: 16849

[{vc}] IF it is using h.264

If this is not posted correctly, or in the correct place, I am sorry. Here is the format I am using to rename TV shows: {n.upperInitial ()} {s.pad 2}x{e.pad 2} {t} [{ vf.replace ('2160p':'4K') }] [{vc}] While this works, I would like help in refining it just a bit. I am only interested in having the ...
by DigidocTN
10 Jul 2025, 16:08
Forum: Windows
Topic: Use Sub. In Resolution
Replies: 2
Views: 18342

Re: Use Sub. In Resolution

Exactly. Thanks for the reply.
by DigidocTN
10 Jul 2025, 13:04
Forum: Windows
Topic: Use Sub. In Resolution
Replies: 2
Views: 18342

Use Sub. In Resolution

I am using the following when renaming episodes:

Format: Select all

{n.upperInitial ()} {s.pad 2}x{e.pad 2} {t} {" [$vf]"}
This gives me the following:

Code: Select all

Them 01x10 Day 10 [2160p]
Is it possible to replace the [2160p] portion of the name with the simpler [4K] instead?

Thanks.