Search found 6 matches

by daphatty
27 Jul 2023, 19:38
Forum: Scripting and Automation
Topic: Possible to restrict search results by Region?
Replies: 3
Views: 357

Re: Possible to restrict search results by Region?

Excellent! Thank you for the suggestions!
by daphatty
27 Jul 2023, 04:16
Forum: Scripting and Automation
Topic: Possible to restrict search results by Region?
Replies: 3
Views: 357

Re: Possible to restrict search results by Region?

Here's a sample log in case anyone is wondering how Filebot behaves during a metadata scan. Rename episodes using [TheTVDB] with [Airdate] Lookup via [LEGO Masters] Fetching episode data for [Lego Masters (DE)] └─ 25 episodes Fetching episode data for [LEGO Masters (US)] └─ 43 episodes Fetching epis...
by daphatty
27 Jul 2023, 03:43
Forum: Scripting and Automation
Topic: Possible to restrict search results by Region?
Replies: 3
Views: 357

Possible to restrict search results by Region?

Does anyone know whether it is possible to limit metadata searches to a specific region? In my case, I am attempting to post-process DVR recordings of Lego Masters (US). Unfortunately, Filebot is detecting said recordings as Lego Masters (DE). Since 99% of my recordings are US based, I figured it wo...
by daphatty
21 Jul 2020, 18:12
Forum: Episode / Movie Naming Scheme
Topic: Renaming Children's Shows with multiple episode names per airing
Replies: 8
Views: 4344

Re: Renaming Children's Shows with multiple episode names per airing

Perhaps it would be possible to expand the --mapper request such that several match cases could be provided and processed in order of priority? For example, if the Airdate match fails, compare Show Title and Episode Name (or multiple names in my case) as a backup criteria. This could be beneficial ...
by daphatty
20 Jul 2020, 15:12
Forum: Episode / Movie Naming Scheme
Topic: Renaming Children's Shows with multiple episode names per airing
Replies: 8
Views: 4344

Re: Renaming Children's Shows with multiple episode names per airing

already done this ;) {n}{def fileSet = episodelist.findAll{ airdate == it.airdate }; ' - S' + s.pad(2) + 'E' + fileSet.episode.min().pad(2) + '-E' + fileSet.episode.max().pad(2) + ' - ' + fileSet.title.join(' & ') } detecting multi episodes?!?! output Daniel Tiger's Neighborhood - S04E11-E12 - ...
by daphatty
20 Jul 2020, 06:45
Forum: Episode / Movie Naming Scheme
Topic: Renaming Children's Shows with multiple episode names per airing
Replies: 8
Views: 4344

Renaming Children's Shows with multiple episode names per airing

I'm in the process of evaluating Filebot for use in an elaborate script I'm writing that converts DVR recordings from Over the Air broadcasts into MP4 format and then renames the shows based on results from online metadata DBs like TVDB. In this specific use case, I am running into a bit of challeng...