Search found 35 matches

by Alfke
25 Mar 2023, 15:01
Forum: Scripting and Automation
Topic: Filter issue after upgrade to V5
Replies: 6
Views: 722

Re: Filter issue after upgrade to V5

Since my last post, filebot completely broke for me and I had to use the desktop version. I updated to 5.0.1 today and its working again, but the output showed some permission errors so I'll look into that. I'd forgotten how much time filebot saves me by renaming and moving my files all at once. I'l...
by Alfke
20 Mar 2023, 15:35
Forum: Scripting and Automation
Topic: Filter issue after upgrade to V5
Replies: 6
Views: 722

Re: Filter issue after upgrade to V5

Hello, my excludes file contains the following: id Name of TV Show / Movie ------------------------------- 74380 Magnum, P.I. (1980) 72546 CSI: Crime Scene Investigation (2000) I enabled this feature as Filebot (at that time) kept renaming new episodes using info from these old series. I'm still uns...
by Alfke
20 Mar 2023, 06:02
Forum: Scripting and Automation
Topic: Filter issue after upgrade to V5
Replies: 6
Views: 722

Re: Filter issue after upgrade to V5

Thank you for the response. I got the two filters to work as follows: --filter "true" --filter "lines '/home/plex/excludes.txt'" The original line I used was --filter "!readLines('/home/plex/excludes.txt').join().findAll(/\d+[^(19|20)\d{2}]/)*.toInteger().contains(id)" ...
by Alfke
19 Mar 2023, 18:45
Forum: Scripting and Automation
Topic: Filter issue after upgrade to V5
Replies: 6
Views: 722

Filter issue after upgrade to V5

Hi Rednoah, After v5 upgrade, I now get this error when I run my filebot script for TV renaming (movie renaming is not affected): "Consider using --filter "true" to allow at least one potential match" So I added --filter "true" to the command line (and now it renames TV...
by Alfke
15 Oct 2021, 16:45
Forum: Ubuntu & Desktop Linux
Topic: General capability questions
Replies: 2
Views: 6921

Re: General capability questions

Awesome, thank you!

Alfke
by Alfke
14 Oct 2021, 18:57
Forum: Ubuntu & Desktop Linux
Topic: General capability questions
Replies: 2
Views: 6921

General capability questions

I'm using latest Filebot CLI with Centos Stream. I don't have any issues but I'm wondering about the following: 1) Currently, I have a tv show sort folder AND a movie sort folder. After placing new content in each sort folder, I then run different CLI commands for filebot to rename and move each typ...
by Alfke
10 Oct 2021, 20:21
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17299

Re: Excluding multiple shows with excludes.txt

If you're using a lookup table like the one suggest above, then you can use the csv() function to read it in as a Map object: none{ id.toString() in csv('/path/to/excludes.tsv') } :!: id in csv(...) won't work because id is an Integer value, but the Map keys are String values. I couldn't get this t...
by Alfke
08 Oct 2021, 17:19
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17299

Re: Excluding multiple shows with excludes.txt

I'll give it a shot. Thanks a bunch!
by Alfke
08 Oct 2021, 16:37
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17299

Re: Excluding multiple shows with excludes.txt

rednoah wrote: 08 Oct 2021, 03:31 :idea: Using the numeric series id is also an option. That will bypass spelling mistakes entirely but might make it harder for a human to maintain the exclude list.
This sounds interesting...so my list would look like this instead: ?

74380
72546
by Alfke
07 Oct 2021, 18:36
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17299

Re: Excluding multiple shows with excludes.txt

ffs...I totally missed that.

Everything is working, thank you.

Alfke
by Alfke
07 Oct 2021, 17:15
Forum: Scripting and Automation
Topic: Excluding multiple shows with excludes.txt
Replies: 22
Views: 17299

Excluding multiple shows with excludes.txt

When using CLI in a bash script, I was excluding this show using this filter command successfully: --filter "n != /Magnum, P.I/" I've decided to start using the command for excludes.txt for another show. This filter command is now failing: --filter '!(n in lines("/home/moi/excludes.tx...
by Alfke
03 Nov 2020, 18:01
Forum: Feature Requests and Bug Reports
Topic: [Read timed out] TheTVDB is down
Replies: 6
Views: 13802

Re: [Read timed out] TheTVDB is down

Although the temporal path is the best answer, is there a way filebot can prompt for a predetermined alternative?

EG; "Would you like filebot to search TheMovieDB instead?"
by Alfke
08 Apr 2020, 21:05
Forum: Ubuntu & Desktop Linux
Topic: limit+timeout the attempts filebot makes to TheTVDB
Replies: 2
Views: 2318

Re: limit+timeout the attempts filebot makes to TheTVDB

Thank you for the speedy response!

Alfke
by Alfke
08 Apr 2020, 20:45
Forum: Ubuntu & Desktop Linux
Topic: limit+timeout the attempts filebot makes to TheTVDB
Replies: 2
Views: 2318

limit+timeout the attempts filebot makes to TheTVDB

Hi Rednoah, I've noticed when TheTVDB has API issues, it makes FileBot throw java errors, even though there are no issues with Filebot or my Linux system....so I have a couple questions: 1) Is it possible to limit+timeout the attempts filebot makes to TheTVDB's API? 2) Is it possible to create an op...
by Alfke
14 Mar 2020, 16:33
Forum: Windows
Topic: Installer for 4.9.0
Replies: 1
Views: 1766

Installer for 4.9.0

I know it's a beta, but I was wondering if there was a windows installer for 4.9.0 or did I miss it?
by Alfke
25 Sep 2019, 16:29
Forum: Help and Support
Topic: Filebot CLI specials formatting issue
Replies: 1
Views: 1465

Re: Filebot CLI specials formatting issue

nm...figured it out after I read the manual :)

{n}/{episode.special ? 'special' : 'season '+s}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00}
by Alfke
25 Sep 2019, 15:26
Forum: Help and Support
Topic: Filebot CLI specials formatting issue
Replies: 1
Views: 1465

Filebot CLI specials formatting issue

I would like filebot to create a folder named specials. Right now I have to rename the season folder manually to specials. So if I add a new series with specials like this: firefly - s00e01 firefly - s01e01 firefly - s02e01 I get these 3 folders: season season 1 season 2 All files and folders are re...
by Alfke
07 Mar 2019, 19:58
Forum: Feature Requests and Bug Reports
Topic: Java failure while running script
Replies: 7
Views: 3022

Re: Java failure while running script

FileBot 4.8.2 (r5789) JNA Native: 5.2.2 MediaInfo: 18.12 7-Zip-JBinding: 9.20 Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=13, Permission denied Extended Attributes: OK Unicode Filesystem: OK Script Bundle: 2019-02-26 (r552) Groovy: 2.5.1 JRE: OpenJDK Runtime Envir...
by Alfke
07 Mar 2019, 19:37
Forum: Feature Requests and Bug Reports
Topic: Java failure while running script
Replies: 7
Views: 3022

Re: Java failure while running script

Just installed the rpm successfully on Centos:

Installed:
libmediainfo-devel.x86_64 0:18.12-2.2

Dependency Installed:
libcurl-devel.x86_64 0:7.29.0-51.el7 libzen-devel.x86_64 0:0.4.37-1.el7
by Alfke
07 Mar 2019, 16:28
Forum: Feature Requests and Bug Reports
Topic: Java failure while running script
Replies: 7
Views: 3022

Re: Java failure while running script

All fixed with one command from CLI:

yum install mediainfo

For reference, I'm on CentOS Linux release 7.6.1810 (Core)

Thanks for your help!

Alfke
by Alfke
06 Mar 2019, 21:39
Forum: Feature Requests and Bug Reports
Topic: Java failure while running script
Replies: 7
Views: 3022

Java failure while running script

On Centos 7, While running the filebot -script fn:mi command, my output file contained very little information (filebot displayed no errors). So I ran filebot -script fn:sysinfo and came accross this java error: FileBot 4.8.2 (r5789) JNA Native: 5.2.2 MediaInfo: net.filebot.mediainfo.MediaInfoExcept...
by Alfke
26 Feb 2019, 18:07
Forum: Help and Support
Topic: License Activation Questions and Answers
Replies: 251
Views: 86474

Re: [FAQ] How do I activate my license?

Activated on Windows ok. For Linux, I got this error: (process:18308): dconf-CRITICAL **: 10:58:59.632: unable to create directory '/run/user/0/dconf': Permission denied. dconf will not work properly. FileBot License *edited* (Valid-Until: 2069-02-26) has been activated successfully. Everything is w...
by Alfke
26 Feb 2019, 16:58
Forum: Anything and Everything else
Topic: Purchased a lifetime license
Replies: 1
Views: 7194

Purchased a lifetime license

Absolutely love Filebot. Please keep up the excellent work!
by Alfke
03 Feb 2017, 02:20
Forum: Scripting and Automation
Topic: CLI Interactive mode display issue
Replies: 3
Views: 2708

Re: CLI Interactive mode display issue

Putty works for the display issue, thanks for that.

Any thoughts on the interactive mode suggestion?
by Alfke
02 Feb 2017, 22:43
Forum: Scripting and Automation
Topic: CLI Interactive mode display issue
Replies: 3
Views: 2708

CLI Interactive mode display issue

I'm using SecureCRT as my ssh client, and when I run filebot in interactive mode, it displays like this: http://imgur.com/gallery/8ovLF Is this a client setting issue or can that be adjusted in filebot so it displays on the left side of the screen or better yet, right in the center? Secondly, I noti...