Search found 10 matches

by jrhessey
06 Feb 2022, 01:25
Forum: Scripting and Automation
Topic: "HDR" Added to Every Movie Title
Replies: 4
Views: 2316

Re: "HDR" Added to Every Movie Title

All I'm trying to do is put HDR at the end of the filename if it's an HDR movie. I tested Kims code and it appears to be doing that. I tried the {hdr == 'HDR'} code, thinking exactly what you said rednoah, code but it showed an invalid exception at = when running it in the filebot app. What does the...
by jrhessey
05 Feb 2022, 12:44
Forum: Scripting and Automation
Topic: "HDR" Added to Every Movie Title
Replies: 4
Views: 2316

"HDR" Added to Every Movie Title

For some reason, that I can't seem to figure out, the text HDR gets added to every movie. I want to tag HDR movies with HDR, but even SDR movies get HDR added to the filenames. Here is the script I am using movieFormat=p:/movies/{n.sortName('$2, $1')} ({y})/{n}.{hdr = 'HDR' ? allOf{vf}{channels}{vc}...
by jrhessey
07 Jul 2021, 19:17
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

Re: HDR Snippet with UTorrent

In testing older movies without an HDR field even available it said the field was undefined when I used the double equal. It's works as expected on all files with the single =. use this: { any{allOf{vf}{af}{vc}{ac}{VIDEO[0].HDR_format_commercial}.join('.')} {allOf{vf}{af}{vc}{ac}.join('.')} } FYI: ...
by jrhessey
07 Jul 2021, 17:10
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

Re: HDR Snippet with UTorrent

rednoah wrote: 07 Jul 2021, 16:06 You’ll want to have a dedicated Media folder instead of using the drive root.
Ahh, OK! I'll look at doing that next.

I really appreciate you help rednoah!!
by jrhessey
07 Jul 2021, 12:25
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

Re: HDR Snippet with UTorrent

1. There is no --def tvFormat option, so your custom series format is never used. :arrow: Please copy & paste the parameter names from the amc script documentation. 2. --output folder must be a valid output folder even if your custom formats are absolute: Invalid usage: input folder [...] must ...
by jrhessey
07 Jul 2021, 12:21
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

Re: HDR Snippet with UTorrent

I was asking about a padded SEASON folder, not the padded season number in the filename.

In testing older movies without an HDR field even available it said the field was undefined when I used the double equal. It's works as expected on all files with the single =.
by jrhessey
06 Jul 2021, 20:48
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

Re: HDR Snippet with UTorrent

I've got it figured out for the most part now. I've got a small problem though when running from utorrent, I get a padded season number for the season folder name and I don't want that. Here is the code from the preferences "C:\Program Files\FileBot\filebot.launcher.exe" @P:/filebotArgs.tx...
by jrhessey
02 Jul 2021, 13:57
Forum: Episode / Movie Naming Scheme
Topic: HDR Snippet with UTorrent
Replies: 11
Views: 12937

HDR Snippet with UTorrent

I'm trying to use the HDR/Dobly Vision detection snippet that devster wrote in the run program of uTorrent. It's bombing out on all the double quotes. Here is the code being executed "C:\Program Files\FileBot\filebot.launcher.exe" -script fn:amc --output "P:" --action move --conf...
by jrhessey
30 Jun 2021, 21:01
Forum: Episode / Movie Naming Scheme
Topic: [SNIPPET] HDR detection
Replies: 22
Views: 22322

Re: [SNIPPET] HDR detection

That's what I left out. Thanks!! How do I skip the last period of my formatting if there is no HDR/DolbyVision? I've attached the code below. If there is no HDR detected it should stop at {ac} then. Thanks for any help! right now I am getting Loki - S01E03 - Lamentis.2160p.6ch.x265.EAC3..mkv p:/movi...
by jrhessey
30 Jun 2021, 14:25
Forum: Episode / Movie Naming Scheme
Topic: [SNIPPET] HDR detection
Replies: 22
Views: 22322

Re: [SNIPPET] HDR detection

Updated version: { def _HDRMap = [ "HDR10": "HDR10", "SMPTE ST 2086": "HDR10", "SMPTE ST 2094 App 3": "Advanced HDR", "SMPTE ST 2094 App 4": "HDR10+", "Dolby Vision / SMPTE ST 2086": "Dolby Vision", ...