Search found 101 matches

by plittlefield
05 Jan 2021, 10:05
Forum: Scripting and Automation
Topic: Movie renaming based on video resolution
Replies: 6
Views: 8689

Re: Movie renaming based on video resolution

Perfect, it worked a treat! Run script [fn:amc] at [Tue Jan 05 10:00:11 GMT 2021] Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: seriesFormat = TV/{n}/{n} {s00e00} Parameter: movieFormat = Movies/{ny} - {any{fn.match(/2160p|1080p|720p|480p/)}{vf}.replace('2160p' : '4K', '1080p' : '...
by plittlefield
04 Jan 2021, 09:05
Forum: Scripting and Automation
Topic: Movie renaming based on video resolution
Replies: 6
Views: 8689

Re: Movie renaming based on video resolution

{any{fn.match(/1080p|720p|480p/)}{vf}.replace('1080p' : 'FHD', '720p' : 'HD', '480p' : 'SD')} Thanks @kim - so, if I have a Linux script like below, where do I put this extra code? /usr/bin/filebot -script fn:amc --output "/home/paully/Plex" --log-file "/home/paully/.filebot/logs/amc...
by plittlefield
31 Dec 2020, 16:13
Forum: Scripting and Automation
Topic: Movie renaming based on video resolution
Replies: 6
Views: 8689

Movie renaming based on video resolution

Is it possible to rename a movie based on video resolution? This would be taken from the filename or the mediainfo details. 1080p = FHD 720p = HD 480p = SD For example... * Movie.Name.1.2020.1080p.WEBRip.x265-RARBG.mkv --> "Movie Name 1 (2020) - FHD.mkv" * Movie.Name.2.2017.720p.WEB-DL.H26...
by plittlefield
05 Jun 2020, 14:20
Forum: Scripting and Automation
Topic: Linux shell exit code or last message
Replies: 2
Views: 1877

Re: Linux shell exit code or last message

Perfect!

I have used this...

Code: Select all

    if [ $? -eq 0 ]; then
      STATUS="OK"
    else
      STATUS="FAILURE"
    fi
    python /usr/bin/pushover-cli --quiet "$STATUS - $t ...done!" "FileBot"
by plittlefield
05 Jun 2020, 11:37
Forum: Scripting and Automation
Topic: Linux shell exit code or last message
Replies: 2
Views: 1877

Linux shell exit code or last message

Does FileBot have an exit code or last error message we can access? I ask because sometimes it fails during an operation and my normal push notification just has "done". It would be good if I could add say, the last line of the output or an exit code to my Pushover notification. e.g. Error...
by plittlefield
20 Jan 2020, 14:58
Forum: Ubuntu & Desktop Linux
Topic: Java 13 - WARNING: An illegal reflective access operation has occurred
Replies: 4
Views: 6564

Re: Java 13 - WARNING: An illegal reflective access operation has occurred

OK, thanks...

"It's a Java thing. It means nothing."

..love it.

:-)

Paully
by plittlefield
17 Jan 2020, 10:36
Forum: Ubuntu & Desktop Linux
Topic: Java 13 - WARNING: An illegal reflective access operation has occurred
Replies: 4
Views: 6564

Java 13 - WARNING: An illegal reflective access operation has occurred

Just installed Java 13 using these commands in Ubuntu 16.04 LTS... sudo add-apt-repository ppa:linuxuprising/java sudo apt-get update sudo apt-get install oracle-java13-installer java --version ...then using the Groovy script to process a Transmission torrent, I received this warning message... WARN...
by plittlefield
15 Jan 2020, 12:48
Forum: Synology NAS & Embedded Linux
Topic: [README] Unsupported class file major version 57
Replies: 24
Views: 30567

Re: [README] Unsupported class file major version 57

Ah ha! Yes, the Unifi Controller script has this in its startup script... $ grep 'JAVA_HOME' /etc/init.d/unifi JAVA_HOME=/usr/lib/jvm/java-8-openjdk-${arch} ...so I think we may be OK. Where is the Java Installer package you mention? Can I install Java 13 my own way if I need to? Cheers, Paul
by plittlefield
15 Jan 2020, 12:29
Forum: Synology NAS & Embedded Linux
Topic: [README] Unsupported class file major version 57
Replies: 24
Views: 30567

Re: [README] Unsupported class file major version 57

OK, will this install side-by-side with 8 because I run a Unifi Controller for my house WiFi which depends on 8..?
by plittlefield
15 Jan 2020, 12:08
Forum: Synology NAS & Embedded Linux
Topic: [README] Unsupported class file major version 57
Replies: 24
Views: 30567

Re: [README] Unsupported class file major version 57

Hi, Same here this morning, after it has successfully renamed and copied a file... BUG! exception in phase 'semantic analysis' in source unit 'Script1.groovy' 133 BUG! exception in phase 'semantic analysis' in source unit 'Script1.groovy' 133 at net.filebot.cli.ScriptShell.evaluate(ScriptShell.java:...
by plittlefield
27 Nov 2019, 09:52
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

Yep, all good :-)

With 4.9.0 the process seems to be faster and better at matching titles.

Thanks for your help and keep up the great work on this time-saving gem.

Paully
by plittlefield
26 Nov 2019, 17:54
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

OK, so I went for it. Turns out my current filebot was just a symlink to the TAR version, which made things easier. Here are my upgrade / install commands as root... $ apt install p7zip-full unrar $ apt --no-install-recommends install FileBot_4.9.0_universal-jdk8.deb So, I now have this... $ filebot...
by plittlefield
26 Nov 2019, 17:32
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

Ooooo, this could be the winning command line, which only installs 3 packages! $ sudo apt -s --no-install-recommends install /home/paully/Downloads/filebot/FileBot_4.9.0_universal-jdk8.deb Reading package lists... Done Building dependency tree Reading state information... Done Note, selecting 'fileb...
by plittlefield
23 Nov 2019, 14:54
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

Also, is it best to remove 4.8.2 before I install the Beta 4.9.0 for cleanliness?
by plittlefield
23 Nov 2019, 14:53
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

Space is not a problem, I'm just trying to keep my system lean and mean with as few packages as possible installed and needing to be updated ;-) OK, so the Beta 4.9.0 is an option with just that 1 dependency, and it seems to only install 2 packages when I simulate... $ sudo apt-get --simulate instal...
by plittlefield
23 Nov 2019, 14:15
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

I am currently on FileBot 4.8.2 using the .deb package by hand (a long time ago.) I've just seen this latest post and out of interest I went through the github script step-by-step with the --simulate option to see what would happen, because this is a headless server with no gui needed. All was going...
by plittlefield
23 Nov 2019, 12:58
Forum: Scripting and Automation
Topic: TV Series 'See' not matched
Replies: 1
Views: 1544

TV Series 'See' not matched

-= PROCESSING See.S01E04.The.River.720p.WEB-DL.DD5.1.H264-CasStudio[rarbg] =- Locking /home/paully/.filebot/logs/amc.log Run script [fn:amc] at [Sat Nov 23 12:55:40 GMT 2019] Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: seriesFormat = TV/{n}/{n} {s00e00} Parameter: movieFormat =...
by plittlefield
11 Nov 2019, 10:57
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 523921

Re: [DEB] Debian package

Hello Reinhard, I am currently on... FileBot 4.8.2 (r5789) JNA Native: 5.2.2 MediaInfo: 18.05 7-Zip-JBinding: 9.20 Chromaprint: java.io.IOException: Cannot run program "fpcalc": error=2, No such file or directory Extended Attributes: OK Unicode Filesystem: OK Script Bundle: 2019-02-26 (r55...
by plittlefield
11 Nov 2019, 10:05
Forum: Scripting and Automation
Topic: AMC and episode matching (match by title)
Replies: 14
Views: 5943

Re: AMC and episode matching (match by title)

OK, understood. It does make me laugh sometimes when I see the results. Here's another example from this morning... Group: [tvs:family guy] => [family.guy.s18e06.720p.web.x264-tbs.mkv] Rename episodes using [TheTVDB] Auto-detected query: [Family Guy] Fetching episode data for [Family Guy] Fetching e...
by plittlefield
09 Nov 2019, 11:18
Forum: Scripting and Automation
Topic: AMC and episode matching (match by title)
Replies: 14
Views: 5943

Re: AMC and episode matching (match by title)

Ah, OK... thanks for the clarification!

I thought it might be a time saving opportunity.

Where does it show it's decided on that one or does it just "get on with it"?
by plittlefield
09 Nov 2019, 10:31
Forum: Scripting and Automation
Topic: AMC and episode matching (match by title)
Replies: 14
Views: 5943

Re: AMC and episode matching (match by title)

Hello All, Not sure if this the correct forum thread, but as The Walking Dead is an AMC production and the Title is part of it, I have the following question... ...why does FileBot download episodes for other TV shows when it has already matched the correct one? e.g. In the example below, FileBot is...
by plittlefield
04 Nov 2019, 09:57
Forum: Feature Requests and Bug Reports
Topic: Watchmen
Replies: 4
Views: 5323

Watchmen

Can FileBot handle the new Watchmen TV series better please? -= PROCESSING Watchmen.S01E03.720p.WEB.h264-TBS[rarbg] =- Locking /home/paully/.filebot/logs/amc.log Run script [fn:amc] at [Mon Nov 04 08:29:33 GMT 2019] Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: seriesFormat = TV/{...
by plittlefield
29 Apr 2019, 21:42
Forum: Scripting and Automation
Topic: TV Show Warrior (2019) incorrectly matched
Replies: 6
Views: 4812

Re: TV Show Warrior (2019) incorrectly matched

I've just tried the age filter as shown in the example documentation, and that does not work for me either! :-( -= PROCESSING Warrior.S01E04.720p.WEB.H264-MEMENTO[rarbg] =- Locking /home/paully/.filebot/logs/amc.log Run script [fn:amc] at [Mon Apr 29 22:39:22 BST 2019] Parameter: minFileSize = 0 Par...
by plittlefield
29 Apr 2019, 21:09
Forum: Scripting and Automation
Topic: TV Show Warrior (2019) incorrectly matched
Replies: 6
Views: 4812

Re: TV Show Warrior (2019) incorrectly matched

Thanks for all that.

So, does that mean I cannot use one 'global' excludes file for any series?

:-(

Paully