Search found 23004 matches

by rednoah
14 Dec 2013, 02:18
Forum: Help and Support
Topic: Altering -Rename's Ignored Extensions
Replies: 4
Views: 3042

Re: Altering -Rename's Ignored Extensions

FileBot processes the files you pass in. You're just passing in the folder, so filebot takes all contents as input, instead you can pass in a specific set of files

Code: Select all

filebot -rename file1.mp4 file2.mp4
The shell would normally expand wildcards like *.mp4 like this.
by rednoah
14 Dec 2013, 01:05
Forum: Help and Support
Topic: Questions regarding CLI
Replies: 7
Views: 4735

Re: Questions regarding CLI

Not it doesn't: Fetching episode data for [Law & Order: Special Victims Unit] Fetching episode data for [Law and Order (1978)] Fetching episode data for [Law and Disorder] Fetching episode data for [Law & Order] Could be any one of those. It only knows it's one of those four and filebot pick...
by rednoah
13 Dec 2013, 18:15
Forum: Help and Support
Topic: Issue Reggarding Portuguese Subtitles
Replies: 8
Views: 5322

Re: Issue Reggarding Portuguese Subtitles

Have you tried?

Code: Select all

filebot -script fn:suball "D:/ViNiCiUS/Videos" --lang pob -non-strict
by rednoah
13 Dec 2013, 16:29
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

You seem to have written down a crontab entry (i.e. config file) and execute is as if it was a script. This is from 14 years ago: http://www.unixgeeks.org/security/newbie/unix/cron-1.html It seems like you don't much looked into the second half of the blog post. It doesn't really say how to name con...
by rednoah
13 Dec 2013, 14:29
Forum: Feature Requests and Bug Reports
Topic: "vf" and "ac" not in Portable-version?
Replies: 4
Views: 3614

Re: "vf" and "ac" not in Portable-version?

There's a download link on the main page. You just have to copy the files somewhere where Java can find them. Usually the same folder as the jar/exe should be fine.
by rednoah
13 Dec 2013, 10:40
Forum: Scripting and Automation
Topic: Leave original files
Replies: 5
Views: 4640

Re: Leave original files

It's --action copy, and you can just add it at the end.

The error just means that the archive is corrupt, or password protected, or just can't be extracted for some reason. Nothing you can do about this.
by rednoah
13 Dec 2013, 10:35
Forum: Feature Requests and Bug Reports
Topic: "vf" and "ac" not in Portable-version?
Replies: 4
Views: 3614

Re: "vf" and "ac" not in Portable-version?

You just need to add the native libraries for your platform. The portable packages only contains the platform-independent parts. Extras like mediainfo, 7zip, fpcalc etc you have to download the binaries for your platform/architecture and put it into the filebot folder or the system library path.
by rednoah
13 Dec 2013, 05:05
Forum: Scripting and Automation
Topic: Leave original files
Replies: 5
Views: 4640

Re: Leave original files

Depends on what you want... --action symlink source will be the file, destination will be the link --action keeplink source will be the link, destination will be the file (I guess this is what you'd prefer) You'll always have to delete file and link. But for links you can easily write a script to fi...
by rednoah
13 Dec 2013, 04:37
Forum: Scripting and Automation
Topic: Leave original files
Replies: 5
Views: 4640

Re: Leave original files

0. Don't use --action move then? --action move 1. Copy --action copy 2. Create symbolic links (better than copy but may not work depending on how rsync treats symlinks) --action symlink 3. Create hard links (create another filesystem entry that points to the same data on disk, i.e. 2 paths that are...
by rednoah
12 Dec 2013, 11:03
Forum: Scripting and Automation
Topic: ToolSet
Replies: 2
Views: 2013

Re: ToolSet

I do all development in Eclipse. If I have to debug things it's usually about filebot internals. For groovy scripts I just prototype things one function at a time, and then put it together. So my "debugging" is really just good old println. I'd say that the groovy scripts are usually so ea...
by rednoah
12 Dec 2013, 03:01
Forum: Scripting and Automation
Topic: [FAQ] WARNING: Failed to preload libzen
Replies: 0
Views: 2226

[FAQ] WARNING: Failed to preload libzen

Q: What does this warning mean? WARNING: Failed to preload libzen Dec 12, 2013 2:19:36 AM net.sourceforge.filebot.mediainfo.MediaInfo <clinit> WARNING: Failed to preload libzen A: Just means that FileBot can't load the mediainfo native library (MediaInfo.dll / libmediainfo.so / libmediainfo.dylib fo...
by rednoah
12 Dec 2013, 02:51
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

The warning just means it can't load libmediainfo. That's normal on ARM. Features that require MediaInfo just won't work that's all.

Things getting slightly mismatched is pretty normal for messy names with multiple almost-equal options. Send me the file paths and I'll have a look.
by rednoah
11 Dec 2013, 17:59
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 637653

Re: [GUIDE] Fully Automated Media Center with Transmission (

Exactly the same issue as the above. Somehow the script doesn't get the variables. The issue seems that the environment variables that transmission is supposed to set are not set.

Go to the transmission forums for help with that.
by rednoah
11 Dec 2013, 17:51
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

Sorry about that, glad you're OK. :oops:

Upgraded your rank so I'll probably be nicer next time. ;)
by rednoah
11 Dec 2013, 15:07
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

You're not escaping arguments. Read the fat/red/orange/colorful parts of the amc manual. EDIT: Scratch that. You just happen to use a simple format where you don't need that. You just can't use \\server syntax. Can't use Windows UNC paths on Unix . So use normal paths instead. And don't use \ on Unix.
by rednoah
11 Dec 2013, 04:54
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

No, on linux "bat" files are called shell scripts. DONT touch filebot.sh (this is basically filebot.exe) Just make a new shell script "myscript.sh" somewhere and chmod +x (to make it executable) it. The rest is similar to windows ./path/to/script.sh arg1 arg2 ... Simple scripts l...
by rednoah
10 Dec 2013, 19:28
Forum: Help and Support
Topic: Error when trying to rename
Replies: 7
Views: 3896

Re: Error when trying to rename

Java applet? There is no Java applet...

You mean you just use the .jar file? That also seems to work fine. Just try the "full blown install" then.
by rednoah
10 Dec 2013, 18:40
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

0. You understand that filebot is a console tool? There is no web interface. If you're not somewhat comfy with ssh-ing into your box and run a few commands you won't be able to use filebot anyway. 1. I'm sure there's plenty of instructions how to install Java for your device. Whatever tutorial you f...
by rednoah
10 Dec 2013, 18:11
Forum: Episode / Movie Naming Scheme
Topic: Naming in 2 languages
Replies: 10
Views: 8672

Re: Naming in 2 languages

1.
There is {n} for your preferred language and {primaryTitle} which is always English. So set Preferred Language to Russian first then just use these two.

2.
Learn from my examples:
http://www.filebot.net/forums/viewtopic.php?f=5&t=2
by rednoah
10 Dec 2013, 18:04
Forum: Help and Support
Topic: Error when trying to rename
Replies: 7
Views: 3896

Re: Error when trying to rename

Try reinstalling then.

I can sort of make sense of that error but I can't see how it could happen with 3.8, also just tried the 3.8 installer that's online and everything works fine.
by rednoah
10 Dec 2013, 16:44
Forum: Scripting and Automation
Topic: AMC - Large File Compilations
Replies: 1
Views: 1606

Re: AMC - Large File Compilations

No such limitations. Send me the logs and I'll have a look.
by rednoah
10 Dec 2013, 16:42
Forum: Help and Support
Topic: Error when trying to rename
Replies: 7
Views: 3896

Re: Error when trying to rename

What package? What OS? What does it say when you do filebot -script fn:sysinfo?
by rednoah
10 Dec 2013, 13:27
Forum: Help and Support
Topic: IPKG install on Synology DS412+ (Intel Atom)
Replies: 3
Views: 3286

Re: IPKG install on Synology DS412+ (Intel Atom)

You may have to extract the ipk somewhere else.

By default it installs to /opt/usr/share/filebot but maybe u can force location with ipkg, or just use the portable.
by rednoah
10 Dec 2013, 01:53
Forum: Scripting and Automation
Topic: Installing filebot to a Zyxel NSA325 nas.
Replies: 16
Views: 10327

Re: Installing filebot to a Zyxel NSA325 nas.

1.
Install Java. If Java runs, FileBot runs.

2.
Install FileBot (copy+extract the portable, ipkg, etc)

3.
use cron for running programs at intervals