Search found 23003 matches

by rednoah
12 Jul 2013, 21:04
Forum: Feature Requests and Bug Reports
Topic: [REQ] Save subtitles next to symlinks
Replies: 3
Views: 2739

Re: [REQ] Save subtitles next to symlinks

Sure, just keep track of the destination files and run the getSubtitles calls after the rename calls. Lookup will work less well because you lose the original name though. You'll need to modify the script anyway. EDIT: Noticed that with clean=y already takes care of this issue in COPY and HARDLINK m...
by rednoah
12 Jul 2013, 20:46
Forum: Scripting and Automation
Topic: Cleaner isAudio isVideo
Replies: 2
Views: 2580

Re: Cleaner isAudio isVideo

Set --action test to do a dry-run and see what would happen.

isAudio/isVideo just checks for extensions. Check media.types in the SVN for details on what extensions are mapped to what type.
by rednoah
12 Jul 2013, 16:26
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

For that you'd have to port (rewrite) the Linux bash script to a Windows CMD bat script.
by rednoah
12 Jul 2013, 16:18
Forum: Feature Requests and Bug Reports
Topic: [Matching Error] Scandal (2012)
Replies: 1
Views: 2137

Re: [Matching Error] Scandal (2012)

I always need the file paths to have a look.

EDIT: Fixed with r1659 by fine-tuning popularity metrics.
by rednoah
12 Jul 2013, 16:12
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

Probably not. You'll have to check the qBittorrent docs on how to call external programs on download complete.
by rednoah
12 Jul 2013, 07:31
Forum: Feature Requests and Bug Reports
Topic: [Matching Error] game of thrones
Replies: 11
Views: 7047

Re: [Matching Error] game of thrones

Fixed it: Input: D:\testdata\AMC-TEST\da\Le Trone De Fer - 1x01 - L'hiver vient.mp4 Group: [tvs:Le Trone De Fer] => [Le Trone De Fer - 1x01 - L'hiver vient.mp4] Rename episodes using [TheTVDB] Auto-detected query: [Le Trone De Fer] Fetching episode data for [Le Trône De Fer] [COPY] Rename [D:\testda...
by rednoah
12 Jul 2013, 07:06
Forum: Feature Requests and Bug Reports
Topic: [Matching Error] game of thrones
Replies: 11
Views: 7047

Re: [Matching Error] game of thrones

Works: C:\>filebot -list --q "Le Trône De Fer" --lang fr --db thetvdb Le Tr¶ne De Fer - 1x01 - L'hiver vient Le Tr¶ne De Fer - 1x02 - La route royale Le Tr¶ne De Fer - 1x03 - Lord Snow Le Tr¶ne De Fer - 1x04 - Infirmes, bÔtards et choses brisÚes Le Tr¶ne De Fer - 1x05 - Le loup et le lion ...
by rednoah
11 Jul 2013, 17:05
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

This is what gets passed into to FileBot:

Code: Select all

Parameter: movieFormat = Film/{n} ({y}){" Cd"}
Your shell is messing with the $name variables. You'll probably need to escape the \$ as well as the \"
by rednoah
11 Jul 2013, 16:25
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

1. What 3D? The default format has no special handling for 3D movies. 2. Work perfectly: ... Parameter: movieFormat = Film/{n} ({y}){" Cd$pi"} Input: D:\testdata\AMC-TEST\Green Snake.mp4 Input: D:\testdata\AMC-TEST\Red Cliff A.mp4 Input: D:\testdata\AMC-TEST\Red Cliff B.mp4 Green Snake.mp4...
by rednoah
11 Jul 2013, 16:07
Forum: Episode / Movie Naming Scheme
Topic: Anime - absolute numbering with eng & jap title and more
Replies: 21
Views: 18213

Re: Anime - absolute numbering with eng & jap title and more

This is how I'd write it: {norm = {it.upperInitial().lowerTrail().replaceAll(/[`´‘’ʻ""“”]/, "'").replaceAll(/[:|]/, " - ").replaceAll(/[?]/, "!").replaceAll(/[*\s]+/, " ").replaceFirst(/^(?i)(The)\s(.+)/, /$2, $1/)}; def np = net.sourceforge.filebot....
by rednoah
11 Jul 2013, 14:18
Forum: Feature Requests and Bug Reports
Topic: [req] Retry on internet failure
Replies: 5
Views: 4221

Re: [req] Retry on internet failure

If you're gonna modify the script you can probably use my retry(...) helper and then just wrap the rename(...) parts that with retry{ ... } blocks. If it works well for you can merge it into my master amc later. e.g. retry(3, 5000) { if (new Random().nextInt(5) != 0) throw new Exception("random...
by rednoah
11 Jul 2013, 03:12
Forum: Help and Support
Topic: French Title files ?
Replies: 4
Views: 5412

Re: French Title files ?

Can't help it but say~ RTFM! :D

Code: Select all

filebot -help
thx @gdelc :D
by rednoah
11 Jul 2013, 03:09
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

I don't know the issue with your movie format. What you seem to describe can't happen.

Maybe you mean this?
http://www.filebot.net/forums/viewtopic.php?f=5&t=806
by rednoah
11 Jul 2013, 03:06
Forum: Scripting and Automation
Topic: Combining scripts
Replies: 5
Views: 4413

Re: Combining scripts

The watcher script supports downloading of subtitles, just set the -get-subtitles flag.

e.g.

Code: Select all

filebot -script fn:watcher -rename -get-subtitles ...
But to set rename language different from subtitle language you'd have to modify the script.
by rednoah
11 Jul 2013, 03:02
Forum: Feature Requests and Bug Reports
Topic: [Matching Error] game of thrones
Replies: 11
Views: 7047

Re: [Matching Error] game of thrones

Looks like TheTVDB doesn't give me any search results for the query "Le Trône De Fer". You can try setting --lang fr to set everything to French, including the TheTVDB search parameters.
by rednoah
10 Jul 2013, 15:19
Forum: Help and Support
Topic: Movies not recognized
Replies: 5
Views: 3846

Re: Movies not recognized

I don't have time to debug your format but I can give you snippets to play with yourself. I guess this part is what you're looking for? AC3 Spa-Eng 6ch Try this, close enough: {ac} {media.AudioLanguageList} {af} And if you're using r1654 or higher you can get it exactly like you specified with this:...
by rednoah
10 Jul 2013, 12:38
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

Nope, with the AMC script you can't not rename movies. Unless you modify the script yourself.
by rednoah
10 Jul 2013, 11:09
Forum: Feature Requests and Bug Reports
Topic: the order that flags (-get-subtitles) are processed
Replies: 2
Views: 2603

Re: the order that flags (-get-subtitles) are processed

That's a bad idea. With the original name you'll have a better chance of finding a matching subtitles. FileBot has plenty of logic built-in to find the best subtitle if no perfect match is available. EDIT: You're just doing filebot -rename -get-subtitles ... I guess? Just make your own script runnin...
by rednoah
10 Jul 2013, 11:03
Forum: Help and Support
Topic: Cannot get set File Creation Date = Episode Air Date to work
Replies: 13
Views: 7930

Re: Cannot get set File Creation Date = Episode Air Date to

Easiest way would be to just have the YYYY-MM-DD airdate in your format expression. With that information available in the filename it's easy for any automation tool to grab the timestamp from the filename and then set the LastModified date.
by rednoah
10 Jul 2013, 10:13
Forum: Help and Support
Topic: Cannot get set File Creation Date = Episode Air Date to work
Replies: 13
Views: 7930

Re: Cannot get set File Creation Date = Episode Air Date to

Once XBMC recognizes each episode it also knows the airdate from the tvdb data. There should be a sort mode for that. As long as you got seriesname/sxe XBMC can do the rest within it's own database.
by rednoah
10 Jul 2013, 09:55
Forum: Help and Support
Topic: Cannot get set File Creation Date = Episode Air Date to work
Replies: 13
Views: 7930

Re: Cannot get set File Creation Date = Episode Air Date to

Not supported then. FileBot only sets CreationDate if supported, but does not touch LastModified.

CreationDate is generally not supported on Linux filesystems. Windows and Mac have LastModified and CreationDate, Linux only has LastModified file attributes so it doesn't work on Linux-based devices.
by rednoah
10 Jul 2013, 04:18
Forum: Feature Requests and Bug Reports
Topic: [Matching Error] game of thrones
Replies: 11
Views: 7047

Re: [Matching Error] game of thrones

Full cmdline call? Full log? File paths?
by rednoah
10 Jul 2013, 04:13
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 584509

Re: Automated Media Center

1. Very easy: {s.pad(2)}x{e.pad(2)} 1.1. A bit more complicated if you take multi-episode files into consideration as well: {s.pad(2)}x{es.collect{ it.pad(2) }.join('-')} 2. If there's only one movie file, {pi} will be undefined and unwind the whole {...} block. That's the difference between {"...
by rednoah
09 Jul 2013, 18:09
Forum: Help and Support
Topic: Movies not recognized
Replies: 5
Views: 3846

Re: Movies not recognized

1. Send me the paths of the files that don't work. Only then can I have a look and figure out what the issue might be. 2. Windows permissions are a bitch. If it simply doesn't allow me to create a folder there's little I can do about it as it works here. PS: Here's the code for joining Language/Form...
by rednoah
09 Jul 2013, 15:47
Forum: Help and Support
Topic: Cannot get set File Creation Date = Episode Air Date to work
Replies: 13
Views: 7930

Re: Cannot get set File Creation Date = Episode Air Date to

Fixed with r1653. Setting timestamps before xattr now so that even if xattr fails it'll not skip doing the timestamps.