Search found 13 matches
- 17 Aug 2022, 16:01
- Forum: Scripting and Automation
- Topic: Properly using "exec"
- Replies: 1
- Views: 2643
Properly using "exec"
My filebot call is working great except I can't get it to set permissions for me. I am using "exec" to send bash commands to change file ownership and permissions as well as start another script. The script runs as planned but the bash commands don't seem to execute. Is there problem with ...
- 22 May 2020, 00:29
- Forum: Help and Support
- Topic: Issues with AMC and TV Shows
- Replies: 3
- Views: 1958
Re: Issues with AMC and TV Shows
Well, that was it. I could have sworn I reviewed the call to look for something like that that would hang me up. Thank you for pointing it out for me!
- 22 May 2020, 00:01
- Forum: Help and Support
- Topic: Issues with AMC and TV Shows
- Replies: 3
- Views: 1958
Issues with AMC and TV Shows
I am having an issue when running AMC on my tv shows. The script is determining that the file is a tv show and following tv show naming option but matching with a movie. I think this is what the groovy errors I get are showing me. filebot -script fn:sysinfo FileBot 4.9.1 (r7372) JDK8 JNA Native: 5.2...
- 14 Nov 2018, 19:52
- Forum: Scripting and Automation
- Topic: Notification Agents
- Replies: 1
- Views: 1646
Notification Agents
I'm switching away from Pushbullet and was wondering what other notification agents filebot supports?
- 30 Sep 2018, 22:52
- Forum: Episode / Movie Naming Scheme
- Topic: Re-rename files using
- Replies: 1
- Views: 10874
Re-rename files using
I renamed a full series using tmdb but the show was ripped in the sequence of imdb leaving most of the episodes off by 1. I've read that filebot stores the original filename in metadata (or something else?) so could I still rename the files based on the original name?
- 12 May 2018, 20:39
- Forum: Ubuntu & Desktop Linux
- Topic: SOLVED: Ubuntu 18.04 java - Error - trustAnchors parameter must be non-empty
- Replies: 3
- Views: 10503
SOLVED: Ubuntu 18.04 java - Error - trustAnchors parameter must be non-empty
After updating to Ubuntu 18.04 I was seeing this error when running most filebot commands: javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty Because of this I couldn't get anything ...
- 09 May 2018, 20:33
- Forum: Ubuntu & Desktop Linux
- Topic: Trouble accessing /mnt snap
- Replies: 1
- Views: 2144
Trouble accessing /mnt snap
With the upgrade to Ubuntu 18 I installed Filebot using snap install filebot --devmode and now can't seem to get it working again. Here is my version: FileBot 4.7.9 (r4986) / OpenJDK Runtime Environment 1.8.0_121 / Linux 4.15.0-20-generic (amd64) Here is my example call: sudo filebot -script fn:amc ...
- 04 May 2018, 14:38
- Forum: Help and Support
- Topic: Issues after migrating to snap
- Replies: 0
- Views: 2339
Issues after migrating to snap
With the upgrade to Ubuntu 18 I installed Filebot using snap install --devmode filebot and now can't seem to get it working again. Here is my version: FileBot 4.7.9 (r4986) / OpenJDK Runtime Environment 1.8.0_121 / Linux 4.15.0-20-generic (amd64) Here is my example call: sudo filebot -script fn:amc ...
- 28 Aug 2015, 18:27
- Forum: Scripting and Automation
- Topic: Renaming & Creating Folders for movies
- Replies: 5
- Views: 7282
Re: Renaming & Creating Folders for movies
Are your movies in "192.168.XXX.XXX\Shared Videos\" or "192.168.XXX.XXX\Shared Videos\New Folder\"?
- 19 Aug 2015, 19:01
- Forum: Episode / Movie Naming Scheme
- Topic: Sub Naming Format using AMC
- Replies: 3
- Views: 4673
Re: Sub Naming Format using AMC
Can someone give me a hand with my language adding format?
{'.'+lang}
{".$lang"}
Both give "ScriptException: SyntaxError: unexpected token: ."
{\".$lang\"}
.{lang} - just a sanity check
Both worked but added an extra . before the extension for non sub files.
{'.'+lang}
{".$lang"}
Both give "ScriptException: SyntaxError: unexpected token: ."
{\".$lang\"}
.{lang} - just a sanity check
Both worked but added an extra . before the extension for non sub files.
- 17 Aug 2015, 20:49
- Forum: Episode / Movie Naming Scheme
- Topic: Sub Naming Format using AMC
- Replies: 3
- Views: 4673
Sub Naming Format using AMC
When I have amc get subs can I specify the naming convention?
i.e. "subFormat={n} ({y}){'.'+lang}"
i.e. "subFormat={n} ({y}){'.'+lang}"
- 26 Sep 2014, 18:46
- Forum: Scripting and Automation
- Topic: Using the 3D regex example
- Replies: 3
- Views: 3151
Re: Using the 3D regex example
Will {fn =~ /3D/ | /3d/ ? 'Movies - 3D' : 'Movies'} remove the case sensitivity?
Edit: {fn =~ /3D|3d/ ? 'Movies - 3D' : 'Movies'} works.
Edit: {fn =~ /3D|3d/ ? 'Movies - 3D' : 'Movies'} works.
- 26 Sep 2014, 18:12
- Forum: Scripting and Automation
- Topic: Using the 3D regex example
- Replies: 3
- Views: 3151
Using the 3D regex example
I am using the example format expression to put 3D movies into a separate folder but I think I may be doing something wrong. The format expressions is: {fn =~ /3D/ ? 'Movies - 3D' : 'Movies'}/{n} ({y}){fn =~ /3D/ ? ' [3D] [H-SBS]' : ''}/{n} ({y}) ({vf}){fn =~ /3D/ ? ' H-SBS' : ''}{' CD'+pi} It is wo...