Search found 22923 matches

by rednoah
24 Apr 2013, 14:25
Forum: Help and Support
Topic: Can't get Filebot running on Synology DS212j
Replies: 4
Views: 4635

Re: Can't get Filebot running on Synology DS212j

It seems it doesn't have write access to it's application data folder. In your case that is configured to be /usr/local/filebot/data. Just modify filebot.sh and set appdata/temp/etc to somewhere that works (e.g. on the hard drive where you're storing your media).
by rednoah
24 Apr 2013, 11:58
Forum: Help and Support
Topic: Synology NAS does not re-index after rename
Replies: 15
Views: 23244

Re: Synology NAS does not re-index after rename

Seems to be generally broken. No idea why nobody noticed before...
by rednoah
24 Apr 2013, 08:39
Forum: Help and Support
Topic: Synology NAS does not re-index after rename
Replies: 15
Views: 23244

Re: Synology NAS does not re-index after rename

Java can't execute synoindex because it can't find the executable. Either specify the full path to the executable or symlink it into one of the default paths like /usr/bin.

Or better yet, execute with bash! Then it must be the same! :D

Code: Select all

/bin/bash -c synoindex ...
by rednoah
24 Apr 2013, 03:24
Forum: Help and Support
Topic: Rename folders without touching original files
Replies: 31
Views: 16731

Re: Rename folders without touching original files

That's technology issue. With symlinks it works, but then NFS resolves symlinks client-side, and not server-side. Try something like FTP/SFTP/WebDAV/Samba instead. Hardlinks on folders are not allowed on most filesystems because of the obvious issues with infinite recursion. But why do you have fold...
by rednoah
24 Apr 2013, 03:18
Forum: Feature Requests and Bug Reports
Topic: Season Detection
Replies: 1
Views: 2132

Re: Season Detection

At some point in time you did set episode order to Absolute Order. So go to Fetch Data -> Preferences -> Episode Order and select Airdate Order.
by rednoah
23 Apr 2013, 09:27
Forum: Feature Requests and Bug Reports
Topic: Music Mode AKA Processing Music files via AcoustID
Replies: 29
Views: 37096

Re: Music Mode AKA Processing Music files via AcoustID

It probably won't work as well as you'd want it. Also I have no idea how XBMC looks up metadata for music. Probably through id3 tags, which is exactly what filebot is not gonna touch. FileBot uses MusicBrainz/AcoustID so it should have same data to work with as MusicBrainz Picard, for better or wors...
by rednoah
23 Apr 2013, 03:25
Forum: Episode / Movie Naming Scheme
Topic: Help with --def movieFormat=
Replies: 1
Views: 3698

Re: Help with --def movieFormat=

1. Must be hell testing this in utorrent, why not open a new cmd first and get argument passing working before you paste it into utorrent? That way >> IO redirection will also work. 2. I don't have time to fix your format. Just do it step by step and see at what parts mess things up, and then google...
by rednoah
23 Apr 2013, 03:13
Forum: Scripting and Automation
Topic: AMC --def exec - filename not escaped under linux
Replies: 8
Views: 5984

Re: AMC --def exec - filename not escaped under linux

Double quotes inside of double quotes? That doesn't work, plenty of explanation in the amc docs: --def "exec=autsmuxer.sh "{file}"" Backslash might work, or you play with mixing single and double quotes, it's all on google: --def "exec=autsmuxer.sh \"{file}\""
by rednoah
22 Apr 2013, 14:23
Forum: Scripting and Automation
Topic: any way to handle XXX films
Replies: 7
Views: 6544

Re: any way to handle XXX films

It'll just ignore them. You're gonna have to modify the script and add your own logic if you want something different.
by rednoah
22 Apr 2013, 14:15
Forum: Scripting and Automation
Topic: any way to handle XXX films
Replies: 7
Views: 6544

Re: any way to handle XXX films

Maybe the ignore option?
--def ignore=regex Ignore filepaths that match the given regular expression
Why don't you try it?

Code: Select all

--def ignore=XXX
by rednoah
22 Apr 2013, 13:08
Forum: Scripting and Automation
Topic: any way to handle XXX films
Replies: 7
Views: 6544

Re: any way to handle XXX films

Not much you can do in the GUI. With CLI/scripting you can filter and do things as you like.
by rednoah
22 Apr 2013, 04:20
Forum: Feature Requests and Bug Reports
Topic: Shows Matching "C" Bug
Replies: 1
Views: 2252

Re: Shows Matching "C" Bug

Haha. It got it from Drive C. Update to r1615 or just add another folder level between the file and the drive c folder.
by rednoah
22 Apr 2013, 04:18
Forum: Scripting and Automation
Topic: AMC misidentifies 60 Minutes as a movie
Replies: 3
Views: 3590

Re: AMC misidentifies 60 Minutes as a movie

Seems to work for me: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Input: D:\testdata\AMC-TEST\60.Minutes.AU.2013.04.14.PDTV.x264-RTA.avi Input: D:\testdata\AMC-TEST\Mar.adentro.2004.720p.HDTV.x264-HBHD.mkv Mar.adentro.2004.720p.HDTV.x264-HBHD.mk...
by rednoah
21 Apr 2013, 13:05
Forum: Scripting and Automation
Topic: [GUIDE] Fully Automated Media Center with Transmission (Mac)
Replies: 121
Views: 635507

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

1. I see no issues with that. Input is either passed in via arguments or via ut_dir/ut_file options. Here's all the docs on my amc script: http://www.filebot.net/forums/viewtopic.php?f=4&t=215 2. Can't use different languages for different rename calls by default. You'd have to modify the script...
by rednoah
21 Apr 2013, 07:24
Forum: Scripting and Automation
Topic: AMC Vuze integration issues.
Replies: 7
Views: 5679

Re: AMC Vuze integration issues.

I don't know what you're trying to do. But you're copy/paste code doesn't make any sense at all. :P You want to copy files? That'd be File.copyTo(folder). e.g. f.copyTo(new File("D:/path/to/remainder")) The rest doesn't make any sense. I can only guess you may want to copy files that have ...
by rednoah
20 Apr 2013, 07:14
Forum: Help and Support
Topic: Rename folders without touching original files
Replies: 31
Views: 16731

Re: Rename folders without touching original files

Replace:

Code: Select all

f.copyTo(new File("D:/path/to/remainder"))
With:

Code: Select all

execute('ln', '-s', f, "D:/path/to/remainder/${f.name}")
by rednoah
20 Apr 2013, 04:14
Forum: Scripting and Automation
Topic: AMC script stopped working
Replies: 10
Views: 6972

Re: AMC script stopped working

It's --def name=value name=value etc. You didn't specify the --def so you're passing file arguments, not script variables.
by rednoah
19 Apr 2013, 17:23
Forum: Help and Support
Topic: Trying to combine these two...
Replies: 6
Views: 3800

Re: Trying to combine these two...

Code: Select all

{["T:", "Y:"].collect{ drive -> def a=n; new File('D:/names.csv').splitEachLine(';'){if (n==it[0]) a=it[1]}; return new File(drive+"/Videos/TV/", a)}.sort{ a,b -> a.exists() <=> b.exists() ?: a.diskSpace <=> b.diskSpace }.last()}/{episode}
by rednoah
19 Apr 2013, 09:30
Forum: Feature Requests and Bug Reports
Topic: Incorrect match - Mar Adentro (2004)
Replies: 2
Views: 3564

Re: Incorrect match - Mar Adentro (2004)

Fixed and commited with r1613: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Input: D:\testdata\AMC-TEST\Mar.adentro.2004.720p.HDTV.x264-HBHD.mkv Group: [mov:The Sea Inside (2004)] => [Mar.adentro.2004.720p.HDTV.x264-HBHD.mkv] Rename movies using ...
by rednoah
19 Apr 2013, 08:21
Forum: Feature Requests and Bug Reports
Topic: Part index variable in CLI
Replies: 1
Views: 2948

Re: Part index variable in CLI

Try with default movie format and it works: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Input: D:\testdata\AMC-TEST\Iron.Man.CD1.avi Input: D:\testdata\AMC-TEST\Iron.Man.CD2.avi Iron.Man.CD1.avi [series: Iron Man, movie: Iron Man (2008)] Exclude...
by rednoah
19 Apr 2013, 08:05
Forum: Help and Support
Topic: Rename folders without touching original files
Replies: 31
Views: 16731

Re: Rename folders without touching original files

Yeah, should be getRenameLog() not getRenameMap() ...

Here you go:
http://pastebin.com/caKW5h3F
by rednoah
19 Apr 2013, 05:07
Forum: Help and Support
Topic: Trying to combine these two...
Replies: 6
Views: 3800

Re: Trying to combine these two...

Nope, that's just the part you couldn't figure out. If you paste that into the format I posted you'd get this: {["T:", "Y:"].collect{ drive -> def a; new File('Y:/incoming/scripts/names.csv').splitEachLine(';'){ if (n == it[0]) a = it[1]}; return new File(drive+"/Videos/TV/&...