Search found 22998 matches

by rednoah
17 Nov 2012, 06:57
Forum: Scripting and Automation
Topic: [@Deprecated] How about sharing your CLI scripts?
Replies: 4
Views: 9081

Revert Renamed Files to their Original Names

@Deprecated Normal users should use filebot -revert calls. The revert script only serves as an example for script developers. Description: FileBot keeps an internal history of all rename operations in case you want to revert files to their original names. Run this script on the specified file or fo...
by rednoah
15 Nov 2012, 15:39
Forum: Help and Support
Topic: Ambiguous filenames
Replies: 3
Views: 4235

Re: Ambiguous filenames

Well, for that case it just won't do anyting then since scratch/movie/tdkr all don't make sense.

Why would you not wanna use output:null in your script? That'd force default extract behaviour and not use what you pass in via --output. That'd make everything work.
by rednoah
15 Nov 2012, 12:36
Forum: Help and Support
Topic: Ambiguous filenames
Replies: 3
Views: 4235

Re: Ambiguous filenames

1. Yeah, that one is bad luck, file/folder names don't make sense at all while "Scratch" is a perfect match. If there was a better match in the file/folder name it would of course prefer that. What script are you using? utorrent-postprocess script should be doing what you suggested, extrac...
by rednoah
15 Nov 2012, 11:39
Forum: Tips, Tricks and Tutorials
Topic: Query Excludes & Series Mappings
Replies: 0
Views: 198501

Query Excludes & Series Mappings

Query Excludes This list defines filename patterns that should be stripped from the search query before a search request is submitted to any of the online data sources. https://github.com/filebot/data/blob/master/query-excludes.txt Series Mappings This list helps FileBot directly map filename patte...
by rednoah
15 Nov 2012, 11:35
Forum: Tips, Tricks and Tutorials
Topic: Add Exclude Terms to Improve Movie / Series Auto-Detection
Replies: 6
Views: 38483

Add Exclude Terms to Improve Movie / Series Auto-Detection

FileBot tries determine the series/movie name from the files in various ways. One of these methods works by trying to filter out the series/movie name from the filename. To help with that and various other aspects that try to make sense of file/folder structures there's a blacklist of text patterns ...
by rednoah
15 Nov 2012, 10:50
Forum: Feature Requests and Bug Reports
Topic: Proxy-Auth support
Replies: 1
Views: 2333

Re: Proxy-Auth support

Looking into the issue I haven't really found anything except that there's different kinds, NTLM, HTTP-Basic-Auth, etc. Also that the httpUser/httpPassword system properties you tried don't exist. What I found was this: -Djava.net.useSystemProxies=true But then again you can't even setup username/pa...
by rednoah
15 Nov 2012, 07:20
Forum: Help and Support
Topic: AHhhhhhhhhhhhhhhhh I Just....
Replies: 6
Views: 5137

Re: AHhhhhhhhhhhhhhhhh I Just....

Added how to do a Link-Drop (Windows anyway) to the FAQ and linked the video tutorials as well. Should be more clear now.
by rednoah
14 Nov 2012, 08:53
Forum: Help and Support
Topic: AHhhhhhhhhhhhhhhhh I Just....
Replies: 6
Views: 5137

Re: AHhhhhhhhhhhhhhhhh I Just....

1. {group} is just will grab the last occurance of a known release group name from file/folder names. e.g. " The Movie" => "The" become {group} for the lack of a better option, if the files is something like "Yadda Yadda 2010 TRiPS " {group} will return "TRiPS"...
by rednoah
14 Nov 2012, 06:50
Forum: Help and Support
Topic: Write log within directory / Ignore certain folders ?
Replies: 15
Views: 9429

Re: Write log within directory / Ignore certain folders ?

Nope, what you're doing is not a good solution. All state flags are encoded into bits of that one integer value. Check docs on uTorrent and google for help on bit flags.

But why would you need that? uTorrent will only call it on download complete anyway, so that's a given.
by rednoah
14 Nov 2012, 04:29
Forum: Help and Support
Topic: Write log within directory / Ignore certain folders ?
Replies: 15
Views: 9429

Re: Write log within directory / Ignore certain folders ?

Have you tried Redirecting output in the cmd? I''m pretty sure in Windows cmd the 2>&1 part has to be after the > file part.
by rednoah
14 Nov 2012, 01:43
Forum: Help and Support
Topic: AHhhhhhhhhhhhhhhhh I Just....
Replies: 6
Views: 5137

Re: AHhhhhhhhhhhhhhhhh I Just....

1. Paste {n} {y} {vf} {source} {vc} {ac} {group} 2. "Use Format" * If there's a warning, you can ignore that. Just means you haven't set up an sample file (via (x)= ) for the format engine to work with. * If {vc} {ac} doesn't work you're either missing the correct mediainfo dlls * {group} ...
by rednoah
13 Nov 2012, 12:41
Forum: Scripting and Automation
Topic: How about sharing your CLI scripts?
Replies: 12
Views: 510621

Query Rename History

Description: FileBot keeps an internal history of all rename operations in case you want to revert files to their original names or just want to find out the original name of a given file. Print the entire rename history: filebot -script fn:history Print rename history for the given files or folder...
by rednoah
12 Nov 2012, 05:03
Forum: Scripting and Automation
Topic: Personalize utorrent-postprocess
Replies: 1
Views: 2349

Re: Personalize utorrent-postprocess

Nope, for that you'll have to run your own local modified version.
by rednoah
12 Nov 2012, 05:01
Forum: Scripting and Automation
Topic: Utorrent Script not doing anything
Replies: 6
Views: 6443

Re: Utorrent Script not doing anything

So what's that log in E:\filebot.log say? Did you try running manually in a new cmd window and see what happens?
by rednoah
12 Nov 2012, 04:58
Forum: Help and Support
Topic: Ubuntu installation help?
Replies: 2
Views: 2874

Re: Ubuntu installation help?

Download the .deb package. Google how to install .deb packages on your distro.
by rednoah
12 Nov 2012, 04:56
Forum: Help and Support
Topic: Complete Beginner
Replies: 82
Views: 54273

Re: Complete Beginner

That's exactly what it's not. On Windows a Shortcut is a normal file, it's data is the path to the actual file. What you need to understand is that files are links to physical data on the disk. In simple terms, any file is a hardlink in that it point to data on the harddisk. Creating a hardlink mean...
by rednoah
12 Nov 2012, 04:44
Forum: Help and Support
Topic: Is it possible to get just the 2nd or 3rd item in the list?
Replies: 1
Views: 2515

Re: Is it possible to get just the 2nd or 3rd item in the li

{genres} is List type object. So you can do {genres[0]}, {genres[1]}, ... and all the other Groovy sugar, e.g. {genres.join('/')}
by rednoah
11 Nov 2012, 18:11
Forum: Help and Support
Topic: Help with utorrent script
Replies: 3
Views: 3657

Re: Help with utorrent script

I created the script with and for the latest uTorrent 3.x, compatibility for 2.2.1 is just make-shift... not really tested. But hey, if it works it works. ;)
by rednoah
11 Nov 2012, 16:18
Forum: Help and Support
Topic: Help with utorrent script
Replies: 3
Views: 3657

Re: Help with utorrent script

Maybe it's the same issue as this one here?
http://filebot.sourceforge.net/forums/v ... t=50#p2413

Otherwise no idea, if it works in the cmd then everything on my side is clear. Maybe the utorrent people can help you out?
by rednoah
11 Nov 2012, 15:32
Forum: Help and Support
Topic: Complete Beginner
Replies: 82
Views: 54273

Re: Complete Beginner

Nope, has to be the same filesystem, i.e. same drive/partition.
by rednoah
11 Nov 2012, 14:54
Forum: Help and Support
Topic: Write log within directory / Ignore certain folders ?
Replies: 15
Views: 9429

Re: Write log within directory / Ignore certain folders ?

0. Please post any and all mismatches. That way I can check if the problem can be fixed or not. On a related note. Since you've set -non-strict you open things up for possible mismatches, on the upside you get lots of positive matches. ;) Just don't set that flag and FileBot will ignore everyting th...
by rednoah
11 Nov 2012, 14:16
Forum: Help and Support
Topic: Complete Beginner
Replies: 82
Views: 54273

Re: Complete Beginner

@kiloback On Windows I have no idea how to redirect and print output, on Linux/Mac it's tee : http://en.wikipedia.org/wiki/Tee_%28command%29 Doesn't work in Windows CMD but luckily for you it works in Windows PowerShell , e.g. powershell /c "echo hello | tee D:\log.txt" @buck3y3 I sense yo...
by rednoah
11 Nov 2012, 02:45
Forum: Help and Support
Topic: Complete Beginner
Replies: 82
Views: 54273

Re: Complete Beginner

Yep, --action hardlink
by rednoah
10 Nov 2012, 20:12
Forum: Help and Support
Topic: Complete Beginner
Replies: 82
Views: 54273

Re: Complete Beginner

*typo: same

hardlinks only work on the same filesystems since the point is there is only one physical file but multiple filesystem entries.