Search found 22974 matches

by rednoah
23 Sep 2013, 19:36
Forum: Help and Support
Topic: How can this be done?
Replies: 17
Views: 8432

Re: How can this be done?

As long as qBittorrent supports calling external programs when download completes you can make it work. You can look at the Transmission and Deluge tutorials and how it's setup with AMC. It'd be similar (but not the same) for qBittorrent.
by rednoah
23 Sep 2013, 19:29
Forum: Feature Requests and Bug Reports
Topic: Subfolder Parsing?
Replies: 1
Views: 2353

Re: Subfolder Parsing?

a) No idea, works for me, doesn't even ask anything... 2013-09-24 03_12_24-FileBot.png Maybe using the latest development revision will make this better. It seems that FileBot puts absolutely no emphasis on the folder. You're correct. FileBot does in fact put no emphasis on any folder or any single ...
by rednoah
23 Sep 2013, 16:44
Forum: Help and Support
Topic: Recent problem: Filebot and Transmission
Replies: 2
Views: 2215

Re: Recent problem: Filebot and Transmission

Just fixed that. It'll start working again by itself once it gets the updates tomorrow.
by rednoah
23 Sep 2013, 16:31
Forum: Feature Requests and Bug Reports
Topic: Conflicting arguments: pass in either file arguments or ut_d
Replies: 5
Views: 3301

Re: Conflicting arguments: pass in either file arguments or

No idea. You can try one of the latest jars and that might work better.
by rednoah
23 Sep 2013, 15:43
Forum: Help and Support
Topic: Parsing Subfolders?
Replies: 4
Views: 5544

Re: Parsing Subfolders?

a) I though I made it hard not to find... Use FileBot from the command-line! There is a simple CLI for core tasks like renaming media files and fetching subtitles as well as checking or creating SFV files. b) It's a Java warning. I can't do anything about that. Just ignore it. Win8 permissions are s...
by rednoah
23 Sep 2013, 15:33
Forum: Feature Requests and Bug Reports
Topic: Conflicting arguments: pass in either file arguments or ut_d
Replies: 5
Views: 3301

Re: Conflicting arguments: pass in either file arguments or

Fixed the script for you.

Though you're using standalone mode so u should pass in arguments instead of using ut_kind/ut_dir/ut_file variables. My new sanity checks saw that ut_dir was set but ut_file wasn't.
by rednoah
23 Sep 2013, 15:04
Forum: Scripting and Automation
Topic: Same file enclose in different folder = different result
Replies: 10
Views: 6425

Re: Same file enclose in different folder = different result

Yep, FileBot tries to take into account as much information as possible and pick the best match. In this case FileBot has the same problem as human me... we both don't speak Spanish! :D If you switch to --lang es it'll work better cause the result will match the file name. If PROCESAR and PELICULAS ...
by rednoah
23 Sep 2013, 05:19
Forum: Feature Requests and Bug Reports
Topic: [Feature Request] Add "576p" to vf binding
Replies: 3
Views: 2880

Re: [Feature Request] Add "576p" to vf binding

Added 720x576 as valid video format for {vf} with r1742
by rednoah
23 Sep 2013, 05:06
Forum: Help and Support
Topic: Parsing Subfolders?
Replies: 4
Views: 5544

Re: Parsing Subfolders?

Yes, what seems to be problem? Have you read the FAQ and watched the video tutorials? GUI: 1. Drop D:/TV 2. Match against TheTVDB CLI: A. Process all at once: -rename -r --db TheTVDB -non-strict B. Process all folder by folder: http://www.filebot.net/forums/viewtopic.php?f=4&t=5#p2211 B usually ...
by rednoah
22 Sep 2013, 12:33
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 684
Views: 1587946

Re: Release Groups {group}

Merged in your groups and it's online now.
by rednoah
22 Sep 2013, 08:46
Forum: Episode / Movie Naming Scheme
Topic: Taking Release group from {group}, if not, from filename
Replies: 8
Views: 8580

Re: Taking Release group from {group}, if not, from filename

e.g.

Code: Select all

[-]([^.]+)[.]

Code: Select all

{"movie.file.name-Group.ext1.ext2".match(/[-]([^.]+)[.]/)}
by rednoah
21 Sep 2013, 22:39
Forum: Help and Support
Topic: Having problems with edited sorty.groovy
Replies: 18
Views: 8824

Re: Having problems with edited sorty.groovy

cmdline output is printed to the cmdline. You can redirect to file if you want. All logging is printed to cmdline.
by rednoah
21 Sep 2013, 21:39
Forum: Scripting and Automation
Topic: Rename TV Episodes - w/out moving to "standard"dir structure
Replies: 10
Views: 5630

Re: Rename TV Episodes - w/out moving to "standard"dir struc

U need more escaping. The character ` is a bash special character. So is $ btw.

@see https://www.gnu.org/software/bash/manua ... ution.html
by rednoah
21 Sep 2013, 21:33
Forum: Help and Support
Topic: Having problems with edited sorty.groovy
Replies: 18
Views: 8824

Re: Having problems with edited sorty.groovy

Nope, if anything was broken there would be exceptions flying around everywhere. It's probably just doing nothing, for some reason.

Since you don't send me any logs I have even less of an idea what's going on than you. ;)
by rednoah
21 Sep 2013, 21:27
Forum: Scripting and Automation
Topic: Rename TV Episodes - w/out moving to "standard"dir structure
Replies: 10
Views: 5630

Re: Rename TV Episodes - w/out moving to "standard"dir struc

Q: I'm trying to run FileBot from the console, but I'm having trouble passing in --format because of spaces or double-quotes A: You need to pass in arguments correctly. "..." allows you to pass in one argument that may contains spaces. Of course since " is a special character in argu...
by rednoah
21 Sep 2013, 20:47
Forum: Scripting and Automation
Topic: Rename TV Episodes - w/out moving to "standard"dir structure
Replies: 10
Views: 5630

Re: Rename TV Episodes - w/out moving to "standard"dir struc

Sure, like you said. So what's not working?

Code: Select all

filebot -rename . --db thetvdb --format "../TV/{n} {sxe} {t}"
by rednoah
21 Sep 2013, 19:59
Forum: Scripting and Automation
Topic: Rename TV Episodes - w/out moving to "standard"dir structure
Replies: 10
Views: 5630

Re: Rename TV Episodes - w/out moving to "standard"dir struc

You can build relative or absolute paths with the naming scheme. Rename/Move/Sort them into any structure. Another example: Sort into multiple drives based on initial letter: {n[0].match((~/(?i)[0-9a-f]/):'X', (~/(?i)[g-t]/):'Y') ?: 'Z'}:/TV/{n}/{episode} Drive X if first letter of {n} matches [0-9a...
by rednoah
21 Sep 2013, 18:23
Forum: Scripting and Automation
Topic: Rename TV Episodes - w/out moving to "standard"dir structure
Replies: 10
Views: 5630

Re: Rename TV Episodes - w/out moving to "standard"dir struc

You can always pass in your own format expression. Anything you can think of is supported, usually without much code.

Did you means something like this?
http://www.filebot.net/forums/viewtopic.php?f=5&t=910
by rednoah
21 Sep 2013, 18:17
Forum: Feature Requests and Bug Reports
Topic: [Incorrect Matches] Multiple. Software bug?
Replies: 6
Views: 3645

Re: [Incorrect Matches] Multiple. Software bug?

Read the FAQ on how to get the latest revision on filebot. The scripts will auto-update as long as you use -script fn:***
by rednoah
21 Sep 2013, 16:42
Forum: Help and Support
Topic: Having problems with edited sorty.groovy
Replies: 18
Views: 8824

Re: Having problems with edited sorty.groovy

I don't maintain sorty. Just play with my sample and try different things to figure out what works and what doesn't. It's always helpful to add println statements randomly in the script so you can see which parts of the script are reached or not reached.
by rednoah
21 Sep 2013, 16:39
Forum: Feature Requests and Bug Reports
Topic: [Incorrect Matches] Multiple. Software bug?
Replies: 6
Views: 3645

Re: [Incorrect Matches] Multiple. Software bug?

Yep, if you knew that the torrent title was always reliable information you could modify the script. But by default it's ignored, cause AMC generally deals with many files at once, and title is usually the folder name anyway which is considered to some degree.
by rednoah
21 Sep 2013, 07:43
Forum: Feature Requests and Bug Reports
Topic: [BETA] Subtitle Upload Support
Replies: 3
Views: 5519

[BETA] Subtitle Upload Support

Latest test jar has experimental support for uploading subtitles to OpenSubtitles. For movies it should work quite well already. As for TV shows I'm not quite sure how best to help u select the IMDb for the episode. Or should one rather enter the IMDb ID of the series and have OpenSubtitles figure o...
by rednoah
21 Sep 2013, 04:46
Forum: Feature Requests and Bug Reports
Topic: [Incorrect Matches] Multiple. Software bug?
Replies: 6
Views: 3645

Re: [Incorrect Matches] Multiple. Software bug?

Code: Select all

bb0513720hximmerse
S.S03E09720
utd112.720p.HDTV.X264-DIMENSION
Where do you people find these names?!?! :D


I guess in episode mode it's not putting enough weight on the folder name.

EDIT: Fixed with r1734
by rednoah
20 Sep 2013, 17:36
Forum: Episode / Movie Naming Scheme
Topic: split shows between different folder directories
Replies: 1
Views: 2609

Re: split shows between different folder directories

The path is fully defined via the format. And in the format you can use arbitrary logic to define your path scheme.

There's plenty of examples in the forums. If you want like a text file with mappings that's easy as well.
by rednoah
19 Sep 2013, 15:15
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 684
Views: 1587946

Re: Release Groups {group}

Better to add like you just did. I'll update it in a few days.