Search found 13 matches

by FabulousTiger
07 Oct 2023, 22:06
Forum: Episode / Movie Naming Scheme
Topic: Add {edition} to the movie folder name when using the {plex} format?
Replies: 13
Views: 6338

Re: Add {edition} to the movie folder name when using the {plex} format?

{ vf =~ /2160p/ ? '4K Movies' : 'Movies' }/{ ~plex.id ** { " {edition-$edition}" } % { allOf{vf}{hdr}{bitrate}{vcf}{ac}{channels}.joining(', ', ' [', ']') }} { vf =~ /2160p/ ? '4K TV Shows' : 'TV Shows' }/{ ~plex * { ' (' + y + ')' } * {" {tmdb-" + {id} + "}"} % { allOf{vf}{hdr}{bitrate}{vcf}{ac ...
by FabulousTiger
06 Oct 2023, 22:15
Forum: Episode / Movie Naming Scheme
Topic: Add {edition} to the movie folder name when using the {plex} format?
Replies: 13
Views: 6338

Re: Add {edition} to the movie folder name when using the {plex} format?

I ended up with these two formats for movies and TV. { vf =~ /2160p/ ? '4K Movies' : 'Movies' }/{ ~plex.id ** { " {edition-$edition}" } % {" ["} % {vf + ', ' } % {hdr ? hdr + ', ': '' } % {Bitrate + ', ' } % {vcf + ', ' } % {ac + ', ' } % {channels + ']' }} For TV I switched to { ~plex * { ' (' + y ...
by FabulousTiger
06 Oct 2023, 09:01
Forum: Episode / Movie Naming Scheme
Topic: Add {edition} to the movie folder name when using the {plex} format?
Replies: 13
Views: 6338

Re: Add {edition} to the movie folder name when using the {plex} format?

/{ vf =~ /2160p/ ? '4K Movies' : 'Movies' }/{ ~plex.id ** { " {edition-$edition}" } % { ' ' + hdr } % { ' ' + vf } % { ' ' + vcf } % { ' ' + ac } % { ' ' + channels }} Like so? And could I do this to inject a year into series the same way with the /{ vf =~ /2160p/ ? '4K TV Shows' : 'TV Shows ...
by FabulousTiger
05 Oct 2023, 23:27
Forum: Episode / Movie Naming Scheme
Topic: Add {edition} to the movie folder name when using the {plex} format?
Replies: 13
Views: 6338

Add {edition} to the movie folder name when using the {plex} format?

I am in need of some help finding or fine-tuning my final naming scheme. I currently am using /media/{fn.match(/Open.Matte/) ? '/Open Matte/ ' : "" }/{ vf =~ /2160p/ ? '4K Movies' : 'Movies' } / { ~plex.id % { fn =~ /open.matte/ ? " {edition-Open Matte}" : " {edition-$edition}" } % { ' (' + director ...
by FabulousTiger
20 Jul 2023, 09:53
Forum: unRAID & docker
Topic: Filebot-node docker stuck for hours
Replies: 9
Views: 11560

Re: Filebot-node docker stuck for hours

I will try that exclude less than 15min video and maybe implement it into a schedule once a month or week. Is there a test I can do to see if it understands that it is using a local mnt? Like if I can run a test to see how long time it would take to run mediainfo on the files. It should be local now ...
by FabulousTiger
18 Jul 2023, 12:13
Forum: unRAID & docker
Topic: Filebot-node docker stuck for hours
Replies: 9
Views: 11560

Re: Filebot-node docker stuck for hours

/opt/filebot-node/task 21 filebot -script 'fn:amc' /mnt/hydra-media/Downloads/Media/ --output /mnt/hydra-media --action duplicate -non-strict --order Airdate --conflict auto --lang en --def 'excludeLink=y' 'artwork=y' 'skipExtract=y' 'minFileAge=0.125' 'storeReport=/mnt/hydra-media/Appdata/filebot ...
by FabulousTiger
16 Jul 2023, 20:42
Forum: unRAID & docker
Topic: Filebot-node docker stuck for hours
Replies: 9
Views: 11560

Re: Filebot-node docker stuck for hours

I didn't take note of exactly what but it was on the lines of "java process nr x killed because of memory" something around that so yeah the OS killed the process. (i should have grabbed the console output for later context yeah) It happened multiple times as it was ruining the cronjob every 4 hours ...
by FabulousTiger
16 Jul 2023, 18:17
Forum: unRAID & docker
Topic: Filebot-node docker stuck for hours
Replies: 9
Views: 11560

Re: Filebot-node docker stuck for hours

I saw in the console that the process was killed because of lack of memory so I have now 4x it from 512mb to 2048mb might increase it if it requires it but I want to stay within reason. I also have moved the the original files to a new completed folder when I am satisfied they have been hardlinked ...
by FabulousTiger
14 Jul 2023, 08:40
Forum: Episode / Movie Naming Scheme
Topic: Adding open matte to tags/edition for plex
Replies: 5
Views: 2309

Re: Adding open matte to tags/edition for plex

I have yet to add them properly as edtion folders, because just with files in the same folder as a standard version would from my limited testing give no edtion marker for that movie file I would have to add it myself in plex. But it might be that at that time I had not named them {edition-Open ...
by FabulousTiger
13 Jul 2023, 08:42
Forum: unRAID & docker
Topic: Filebot-node docker stuck for hours
Replies: 9
Views: 11560

Filebot-node docker stuck for hours

I seem to be having a problem with filebot-node starting out fine but after a a while it seemingly stops and sometimes it gets killed and doesn't start again. I thought it might have been that I ran the crontab schedule too often with every two hours. So I increased it to 4 hours, but then I thought ...
by FabulousTiger
12 Jul 2023, 23:07
Forum: Episode / Movie Naming Scheme
Topic: Adding open matte to tags/edition for plex
Replies: 5
Views: 2309

Re: Adding open matte to tags/edition for plex

It's a aspect ratio thing "Open-matte is the general term for when a film is shown (partially or entirely) uncropped from what was originally filmed. This stems from when film stock was used and to achieve the desired final ratio of a film you typically had to physically cover part of the frame with ...
by FabulousTiger
02 Jul 2023, 21:02
Forum: Episode / Movie Naming Scheme
Topic: Adding open matte to tags/edition for plex
Replies: 5
Views: 2309

Adding open matte to tags/edition for plex

I noticed that open matte is not noted as a edition or tag (could i add it myself by editing filebot install?). I have been racking my head trying to add it to the folder name as well as the file name I think I have figured out that I can't do it with plex.id or I don't know how to. I am hoping that ...