Search found 10 matches

by CaptainKen
22 Sep 2025, 19:12
Forum: Feature Requests and Bug Reports
Topic: Filebot name, confusion, and auto deletion of file
Replies: 4
Views: 3088

Re: Filebot name, confusion, and auto deletion of file

1) MediaInfo below 2) "It seem strange me that you add cryptic "subs" and "cp" instead of [English Subs] and [with Chapters] though" Using those abbreviations are my way of keeping file names shorter, which sometime can be long. Since, I'm the only person that ever sees this, the customization you ...
by CaptainKen
21 Sep 2025, 19:10
Forum: Feature Requests and Bug Reports
Topic: Filebot name, confusion, and auto deletion of file
Replies: 4
Views: 3088

Filebot name, confusion, and auto deletion of file

Wondering where the "96/24 " is coming from in this rename? And how it's getting a weird destination and file name? Original: Bite.the.Bullet.1975.1080p.BluRay.x264.DTS-FGT Strange Destination path: "24 5.1 subs cp )" Proposed new name: F:/Bite the Bullet (1975 BluRay 1080p x264 DTS 96/24 5.1 subs ...
by CaptainKen
15 May 2025, 22:54
Forum: Windows
Topic: multiple audio tracks, more than 3 chapters, only english subs
Replies: 10
Views: 22156

Re: multiple audio tracks, more than 3 chapters, only english subs

Perfect as shown below thanks to you! Thank you!

Just noticed one last item, which is how do I keep IMAX in the filename?

Example 1, Oppenheimer:
Oppenheimer (2023 Bluray 1080p x265 DD 5.1 DDP 5.1 subs cp)

Example 2, Wicked:
Wicked (2024 WEBDL 1080p x264 DDP Atmos 5.1 DDP 5.1 subs cp)
by CaptainKen
15 May 2025, 20:56
Forum: Windows
Topic: multiple audio tracks, more than 3 chapters, only english subs
Replies: 10
Views: 22156

Re: multiple audio tracks, more than 3 chapters, only english subs

Thank you again. Here are the results: Oppenheimer (2023 Bluray 1080p x265 DD DD DD 5.0.1 DDP DD 5.0.1) Wicked (2024 WEBDL 1080p x264 DDP DD 5.0.1 DD DD 5.0.1 DDP Atmos DD 5.0.1 DD DD 5.0.1 subs cp ) Based on your previous response I'm interpreting that there's no way to reduce {audio.Format ...
by CaptainKen
14 May 2025, 16:39
Forum: Windows
Topic: multiple audio tracks, more than 3 chapters, only english subs
Replies: 10
Views: 22156

Re: multiple audio tracks, more than 3 chapters, only english subs

My code currently extracts the first english aco audio code, but I don't know how to add multiple audio aco's to the filename? {aco} already considers multiple audio streams but will generally only yield one value. There is no {aco} for all audio streams. {aco} is based on audio.Codec_Profile and ...
by CaptainKen
13 May 2025, 03:41
Forum: Windows
Topic: multiple audio tracks, more than 3 chapters, only english subs
Replies: 10
Views: 22156

Re: multiple audio tracks, more than 3 chapters, only english subs

Thank you rednoah for quick reply and some details. I only have a file that's already been processed and manually adjusted. IOW I don't have an example file containing audio or sub title tracks that I would normally use MKVToolNix to filter out. Also in my original example I added DTS-HD MA just as ...
by CaptainKen
12 May 2025, 23:21
Forum: Windows
Topic: multiple audio tracks, more than 3 chapters, only english subs
Replies: 10
Views: 22156

multiple audio tracks, more than 3 chapters, only english subs

Could someone please help me modify the code below to include the following enhancements: - List in filename not just the 1st, but all English aco audio tracks - If the file includes more than 3 Chapters add "cp" to end of filename - Only add "subs" to end of filename (before any above found "cp ...
by CaptainKen
23 Dec 2024, 22:27
Forum: Episode / Movie Naming Scheme
Topic: None of these work: replace('AC-3','DD') or replace('AC3','DD') or replace('Dolby Digital','DD')
Replies: 3
Views: 2961

Re: None of these work: replace('AC-3','DD') or replace('AC3','DD') or replace('Dolby Digital','DD')

Thank you for the reply and all the many details! I was able to get it working by changing the order of the aco expressions as shown here: {n.replaceTrailingBrackets()} s{S00}e{E00} - {t} ({source} {vf} {vc.replace('AVC','x264').replace('HEVC','x265')} {aco.replace('Dolby Digital Plus with Dolby ...
by CaptainKen
22 Dec 2024, 21:07
Forum: Episode / Movie Naming Scheme
Topic: None of these work: replace('AC-3','DD') or replace('AC3','DD') or replace('Dolby Digital','DD')
Replies: 3
Views: 2961

None of these work: replace('AC-3','DD') or replace('AC3','DD') or replace('Dolby Digital','DD')

{n.replaceTrailingBrackets()} s{S00}e{E00} - {t} ({source} {vf} {vc.replace('AVC','x264').replace('HEVC','x265')} {aco.replace('AC3','DD').replace('Dolby Digital Plus with Dolby Atmos','DDP Atmos').replace('Dolby Digital Plus','DDP')} {channels} { 'en' in {textlanguages} ? ' subs' :null in ...