Search found 22991 matches

by rednoah
18 Feb 2014, 07:31
Forum: Feature Requests and Bug Reports
Topic: High-DPI problem in Windows
Replies: 2
Views: 2609

Re: High-DPI problem in Windows

How does it look if you run with the FileBot (platform) shortcut?
by rednoah
18 Feb 2014, 05:57
Forum: Help and Support
Topic: Japanese (Transcription) episodes titles
Replies: 17
Views: 9393

Re: Japanese (Transcription) episodes titles

I did try this myself and at least from cmdline you can make it work by pass in --lang x-jat . filebot -rename . --db anidb -non-strict --lang x-jat --action test Rename episodes using [AniDB] Auto-detected query: [Neon Genesis Evangelion] Fetching episode data for [Shinseiki Evangelion] Fetching ep...
by rednoah
18 Feb 2014, 03:23
Forum: Help and Support
Topic: Where are GUI logs in Windoze
Replies: 2
Views: 1936

Re: Where are GUI logs in Windoze

MOVE operations are performed by the native Windows File-Move dialog so filebot doesn't know if any errors happened. Just knows if the files are there in the end and updates the GUI accordingly. If you use FileBot (platform) it'll use the Java Files API for MOVE and that will give you some logs in t...
by rednoah
17 Feb 2014, 11:53
Forum: Help and Support
Topic: Make alias or feed arguments from file
Replies: 1
Views: 1783

Re: Make alias or feed arguments from file

Just create some amc.sh script and call filebot with predefined arguments, plus whatever you pass along when calling the script via "$@". Here's what I use: filebot -script dev:amc -non-strict --log-file amc.log --def artwork=y "seriesFormat=TV Shows/{n}/{'Season '+s.pad(2)}/{n} - {s0...
by rednoah
17 Feb 2014, 11:21
Forum: Feature Requests and Bug Reports
Topic: Wrapping text in the format editor
Replies: 4
Views: 4017

Re: Wrapping text in the format editor

If you have really really really long expressions I recommend just using a random Groovy editor to write the code and then just paste it into filebot.

PS: When pasting code into the editor new lines should be converted to blanks automatically.
by rednoah
17 Feb 2014, 11:16
Forum: Feature Requests and Bug Reports
Topic: [Feature] Mkv subtitle detection
Replies: 8
Views: 5876

Re: [Feature] Mkv subtitle detection

Sorry, that one will need some scripting, either in groovy or cmdline, 1. select all files, 2. filter out files mkv files with embedded subtitles, 3. run -get-subtitles on the remaining files.

Like so:
https://github.com/filebot/scripts/blob ... all.groovy
by rednoah
17 Feb 2014, 10:54
Forum: Help and Support
Topic: OpenSubtitles - ZipException: Not in GZIP format
Replies: 1
Views: 2079

Re: OpenSubtitles - ZipException: Not in GZIP format

I've just tried with the latest jar and it seems to work just fine:

Code: Select all

filebot -script fn:osdb.login

Code: Select all

Enter OpenSubtitles username: rednoah
Enter OpenSubtitles password: XXX
Testing OpenSubtitles... OK
Done ヾ(@⌒ー⌒@)ノ
It was probably a temporary issue on the server-side.
by rednoah
17 Feb 2014, 04:37
Forum: Feature Requests and Bug Reports
Topic: [Feature] Mkv subtitle detection
Replies: 8
Views: 5876

Re: [Feature] Mkv subtitle detection

I guess you could easily add this logic to your own custom subtitle script.

Just check with getMediaInfo(...) and see if you get subtitles tracks and if yes just don't pass them along to getMissingSubtitles(...)
by rednoah
16 Feb 2014, 03:51
Forum: Help and Support
Topic: Add a field with blank results (but source data exists)?
Replies: 1
Views: 1574

Re: Add a field with blank results (but source data exists)?

Yes, extra metadata is always retrieved from TheTVDB or TheMovieDB.
by rednoah
16 Feb 2014, 03:49
Forum: Feature Requests and Bug Reports
Topic: [Feature Request] Android Version - Cmdline ??
Replies: 6
Views: 6967

Re: [Feature Request] Android Version - Cmdline ??

Yep. Let me know how it goes.

Though I recon it may not be possible completely though since at least Groovy will need a standard compliant Java VM and Dalvik is not by design.

If you're a developer the best chance my be checking out the source and compiling for Dalvik and see what happens. :D
by rednoah
15 Feb 2014, 12:58
Forum: Scripting and Automation
Topic: utorrent help
Replies: 4
Views: 3257

Re: utorrent help

If you set the option -log-file amc.log then it will most definitely create a log file at %APPDATA%/FileBot/logs/amc.log
by rednoah
15 Feb 2014, 03:47
Forum: Scripting and Automation
Topic: utorrent help
Replies: 4
Views: 3257

Re: utorrent help

No. uT is calling filebot from cmdline which runs independent from the UI instance.

Check the logs for why it's not working.
by rednoah
14 Feb 2014, 13:20
Forum: Help and Support
Topic: TV show names fail can I use tv show id
Replies: 5
Views: 5459

Re: TV show names fail can I use tv show id

What's the correct primary title in TheTVDB then? Can you make it work via --q?

PS: Lookup by ID is not supported.
by rednoah
13 Feb 2014, 15:59
Forum: Help and Support
Topic: Synology config help
Replies: 15
Views: 10873

Re: Synology config help

Looks like it can't make sense of that file. Maybe the movie is not listed yet. No idea. Doesn't look like a general issue though.
by rednoah
13 Feb 2014, 15:53
Forum: Help and Support
Topic: Naming Format Questions...
Replies: 7
Views: 4176

Re: Naming Format Questions...

Yes, Yes and No. : You can build any kind of logic or conditions into a single format expression. That's for n == QI and duration > 40min or whatever you may want to define. The latter is a simple no. Though you can just pre-process the names before calling rename() though in your case since you alr...
by rednoah
13 Feb 2014, 09:35
Forum: Feature Requests and Bug Reports
Topic: [Error] AtomicMoveNotSupportedException on Windows
Replies: 3
Views: 3374

Re: [Error] AtomicMoveNotSupportedException on Windows

Yep. I'll make a fallback without the atomic flag then.

EDIT: Fixed with r2037
by rednoah
13 Feb 2014, 07:15
Forum: Help and Support
Topic: Synology config help
Replies: 15
Views: 10873

Re: Synology config help

Pretty sure they may support running external tools. All downloaders do. Otherwise feel free to request that feature.
by rednoah
12 Feb 2014, 15:56
Forum: Feature Requests and Bug Reports
Topic: [Error] AtomicMoveNotSupportedException on Windows
Replies: 3
Views: 3374

Re: [Error] AtomicMoveNotSupportedException on Windows

LinkageException is caught specifically to have it default to Commons IO on Java 6 where Java 7 functions are not available.

ATOMIC_MOVE flag is required to change the case when renaming Windows-identical files. Any idea why ATOMIC_MOVE may not be supported in your case?
by rednoah
12 Feb 2014, 05:01
Forum: Help and Support
Topic: Synology config help
Replies: 15
Views: 10873

Re: Synology config help

What's preventing you from running two instances? Should work just fine as long as the -log-file name is different. You can filter out episode data before matching with --filter expression. And not setting -non-strict will eliminate fuzzy matches. PS: I recommend running the AMC script in intervals ...
by rednoah
12 Feb 2014, 04:53
Forum: Help and Support
Topic: Japanese (Transcription) episodes titles
Replies: 17
Views: 9393

Re: Japanese (Transcription) episodes titles

Sorry. That's not supported then for now.

What you could try is using the ascii() function, e.g.

{t.ascii()}

This will have filebot transliterate the Kanji. You could try, but with all the readings automatic transliteration probably not work well
by rednoah
12 Feb 2014, 04:48
Forum: Help and Support
Topic: Folder Rename
Replies: 3
Views: 2159

Re: Folder Rename

Haha, that's bad. Alright, I'll have a look at this and fx it once I'm back from my holiday. :D

EDIT: Fixed with r2036
by rednoah
11 Feb 2014, 05:50
Forum: Help and Support
Topic: Japanese (Transcription) episodes titles
Replies: 17
Views: 9393

Re: Japanese (Transcription) episodes titles

What's wrong with Japanese titles?
by rednoah
11 Feb 2014, 05:46
Forum: Help and Support
Topic: Folder Rename
Replies: 3
Views: 2159

Re: Folder Rename

Click "Continue".
by rednoah
10 Feb 2014, 05:21
Forum: Episode / Movie Naming Scheme
Topic: Artwork.* not pulling correct info sometimes
Replies: 12
Views: 7804

Re: Artwork.* not pulling correct info sometimes

Yep. The rename lookup is much much more complex then what the artwork script is doing. The artwork script would usually make use of xattr metadata written by the rename function. You could try setting -DuseExtendedAttributes=true but it may not be supported on OSX. You'll need at least Java 7 and o...
by rednoah
10 Feb 2014, 04:00
Forum: Episode / Movie Naming Scheme
Topic: Artwork.* not pulling correct info sometimes
Replies: 12
Views: 7804

Re: Artwork.* not pulling correct info sometimes

I'm sure it try's to match th correct title first, but gets 0 results, so it starts trying different things until it gets a bit. That's what I can tell, but for why I'll have to debug it when I come back. ;)