Search found 23050 matches

by rednoah
20 Feb 2013, 02:51
Forum: Scripting and Automation
Topic: AMC TV episode naming scheme
Replies: 1
Views: 2547

Re: AMC TV episode naming scheme

Yes. Customize Paths: You can override the default naming schemes via --def seriesFormat, animeFormat or movieFormat but make sure you understand how cmdline arguments work since you must escape double quotes via \", ampersands, etc otherwise the cmdline arguments will not be passed to FileBot ...
by rednoah
20 Feb 2013, 02:13
Forum: Help and Support
Topic: running AMC script from CLI batch file
Replies: 4
Views: 5821

Re: running AMC script from CLI batch file

It's not hard. Just a PATH issue. As I said the easiest way is to use absolute paths to all the programs instead of relying on PATH being setup correctly. 1. Edit "C:/Program Files/FileBot/filebot.cmd" and replace 'java' with "C:/Program Files/Java/.../java.exe" 2. Instead of 'fi...
by rednoah
20 Feb 2013, 00:58
Forum: Scripting and Automation
Topic: Some issues with Fully Automated Media Center script
Replies: 2
Views: 3255

Re: Some issues with Fully Automated Media Center script

1. Output redirect works with utorrent, I'm using it everyday. With invoke.vbs it'll probably not work though. 2. Not sure what you mean. You can try doing another echo >> log in the command to keep track of things. That's not in the script. It'd be something like filebot -script ... && echo...
by rednoah
20 Feb 2013, 00:45
Forum: Help and Support
Topic: running AMC script from CLI batch file
Replies: 4
Views: 5821

Re: running AMC script from CLI batch file

You're using x64 windows so it'll open an x64 cmd.exe when you click the .bat file. Your download manager is probably running in x86 compatibility mode, so if a x86 program is calling cmd.exe Windows will probably automatically make it call the x86 cmd.exe so PATH might be different in the 32 bit en...
by rednoah
19 Feb 2013, 15:27
Forum: Feature Requests and Bug Reports
Topic: Version 3.4 headless dependencies
Replies: 4
Views: 4237

Re: Version 3.4 headless dependencies

Well, there was troubles with n00bs that somehow had a a headless jre installed and then couldn't make filebot work.

Anyway, i'll set it back to depends openjdk-7-jre | default-jre-headless with the next release.
by rednoah
19 Feb 2013, 00:58
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

If course, isn't it obvious that the ut_* parameter you passed in are not what they're supposed to be? utorrent only replaces the %variables in the cmdline call and NOT randomly in bat scripts you my be using. You MUST paste the call directly into utorrent so it can replace the %variables with values.
by rednoah
18 Feb 2013, 19:27
Forum: Help and Support
Topic: Newbie question - installation- linux
Replies: 3
Views: 5500

Re: Newbie question - installation- linux

Yep. Works. The rest you can do yourself. No arguments = GUI. Cmdline arguments = cmdline mode.

./filebot.sh -version
./filebot.sh -script fn:sysinfo

If by install you mean have the 'filebot' command it's just a matter of sym linking filebot.sh to /use/bin/filebot
by rednoah
18 Feb 2013, 19:19
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

Of course there's not output in the console since you're redirecting output to that log file via >>

Look how I don't use >> in my screenshot.
by rednoah
18 Feb 2013, 16:42
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

Try this in the cmd and see what happens.

Means no more utorrent. Just run it directly. See what happens:
fn.amc.png
Whatever happens, there can't be no output logging.
by rednoah
18 Feb 2013, 16:34
Forum: Help and Support
Topic: Newbie question - installation- linux
Replies: 3
Views: 5500

Re: Newbie question - installation- linux

Download the portable package, unzip and run ./filebot.sh
by rednoah
18 Feb 2013, 12:46
Forum: Feature Requests and Bug Reports
Topic: Deadmano's Bug Finds
Replies: 12
Views: 6755

Re: Deadmano's Bug Finds

Not really. That way you can use moviedb for search and imdb rating for the filename. Basically it's about minimizig reliance on IMDb as far as possible. Because IMDb doesn't allow people to steal their data and therefore also doesn't have an API for programs. Only the website for humans. Of course ...
by rednoah
18 Feb 2013, 11:20
Forum: Scripting and Automation
Topic: uTorrent script and seriesFormat
Replies: 4
Views: 4249

Re: uTorrent script and seriesFormat

Season X to Season XY? I hope you're not thinking about do this by hand ;) Here's a script for that: filebot -script fn:replace --def "e=Season (\d)(?!\d)" "r=Season 0$1" /path/to/media You can try with --action test first if things look alright. For left-over empty Season X fold...
by rednoah
18 Feb 2013, 09:57
Forum: Scripting and Automation
Topic: uTorrent script and seriesFormat
Replies: 4
Views: 4249

Re: uTorrent script and seriesFormat

I got the feeling most people prefer "Season 00" as standard folder naming as there is many shows that have more than 10 seasons. Better add that now when there's not so many people using the script yet. New: tvs: tryQuietly{ seriesFormat } ?: '''TV Shows/{n}/{episode.special ? "Speci...
by rednoah
18 Feb 2013, 09:31
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 601110

[FAQ] How can I change the filename?

The format engine allows you to fully automatically make any kind of change to show names and episode titles via Groovy expressions.

Q: Some episodes start with '...Name' - Is it possible to ignore the dots when renaming?
A: Sure, just use after(regex) function.

Code: Select all

{t.after(/^[.]+/)}
by rednoah
18 Feb 2013, 06:59
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

As you can see from the utorrent logs it's calling this command: filebot -script fn:amc --output "E:/Test" --action copy --conflict override -non-strict --def music=n subtitles=en artwork=y "ut_dir=\\TITANSERVER\3media.2tb\TV Shows 1\American Dad!\American.Dad.S08E12.720p.HDTV.X264-DI...
by rednoah
18 Feb 2013, 03:09
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

There lots of tabs in the lower said of the main screen. Peers, Files, Trackers. The last one says Logger.
by rednoah
18 Feb 2013, 02:15
Forum: Feature Requests and Bug Reports
Topic: Deadmano's Bug Finds
Replies: 12
Views: 6755

Re: Deadmano's Bug Finds

Doesn't matter what datasource you select to search for movies, the format engine will still retrieve metadata from themoviedb. Alternatively you can try using {imdb.genres} that'll pull data from OMDb but may work less well.
by rednoah
18 Feb 2013, 02:11
Forum: Scripting and Automation
Topic: Need help with utorrent setup
Replies: 28
Views: 21396

Re: Need help with utorrent setup

Check the utorrent logger tab. You can try copy and pasting the command utorrent uses into the cmd and run it yourself and see what happens. I cannot imagine why there would be no output of any kind, there has to be something.
by rednoah
17 Feb 2013, 18:41
Forum: Feature Requests and Bug Reports
Topic: Deadmano's Bug Finds
Replies: 12
Views: 6755

Re: Deadmano's Bug Finds

Currently there is no genres entered. You're welcome to add missing information to TheMovieDB:
http://www.themoviedb.org/movie/134597-the-collection
by rednoah
16 Feb 2013, 19:15
Forum: Scripting and Automation
Topic: Help with AMC and Renaming
Replies: 2
Views: 2821

Re: Help with AMC and Renaming

I've never even tried it on embedded Linux myself but since by now Java runs on all these devices so does FileBot. The mediainfo / 7zip native libs are a different issue though. You'd have to compile them yourself. The {fn} in the format means f ile n ame: TV Shows/{n}/Season {s.pad(2)}/{fn} You'll ...
by rednoah
16 Feb 2013, 11:02
Forum: Feature Requests and Bug Reports
Topic: Season matching problem: Kitchen Nightmares US
Replies: 1
Views: 2450

Re: Season matching problem: Kitchen Nightmares US

TheTVDB only lists the show "Kitchen Nightmares" and the latest episode is "Kitchen Nightmares - 5x11 - Mill Street Bistro, Part 2". In -non-strict mode things can get quite unpredictable if the episode you have doesn't exist according to the database. EDIT: It seems TVRage and T...
by rednoah
16 Feb 2013, 05:32
Forum: Scripting and Automation
Topic: Utorrent integration...
Replies: 1
Views: 2651

Re: Utorrent integration...

--action move => move files --action copy => copy files %F - Name of downloaded file (for single file torrents) %D - Directory where files are saved %N - Title of torrent %P - Previous state of torrent %L - Label %T - Tracker %M - Status message string (same as status column) %I - hex encoded info-...
by rednoah
15 Feb 2013, 19:03
Forum: Feature Requests and Bug Reports
Topic: Fetch Episode List not working in 3.4
Replies: 8
Views: 5347

Re: Fetch Episode List not working in 3.4

Nope, I'm using OpenJDK as well. Might have something to do with you using KDE and the glibs somehow having issues. Try the -DuseGVFS=false and see if that makes a difference.
by rednoah
15 Feb 2013, 18:54
Forum: Feature Requests and Bug Reports
Topic: Fetch Episode List not working in 3.4
Replies: 8
Views: 5347

Re: Fetch Episode List not working in 3.4

There seem to be some issues with the libraries installed on your system.

Try setting this in the startup file:

Code: Select all

-DuseGVFS=false
If that doesn't work it's a Java issue. Though the GVFS stuff is for accessing GVFS and shouldn't affect anything but Drag-n-Drop.
by rednoah
15 Feb 2013, 18:43
Forum: Feature Requests and Bug Reports
Topic: Fetch Episode List not working in 3.4
Replies: 8
Views: 5347

Re: Fetch Episode List not working in 3.4

I've set network timeouts to 1 minute... so that's very odd. Try running with konsole and see if there's any cmdline output.

Also you can put debugging proxy in between so you can see what network requests filebot makes and what works and what doesn't:
http://en.wikipedia.org/wiki/WebScarab