Search found 22996 matches

by rednoah
21 Oct 2013, 13:51
Forum: Scripting and Automation
Topic: AMC: temporary location for processing
Replies: 11
Views: 7346

Re: AMC: temporary location for processing

amc processes whatever you pass in from cmdline. If you only pass in two file paths (and not a folder) it'll process only those.
by rednoah
21 Oct 2013, 06:59
Forum: Scripting and Automation
Topic: More terms to exclude
Replies: 10
Views: 6747

Re: More terms to exclude

I don't have time to look into old code, especially with no output log attached.

It works with r1801.
by rednoah
21 Oct 2013, 02:28
Forum: Scripting and Automation
Topic: More terms to exclude
Replies: 10
Views: 6747

Re: More terms to exclude

Rename episodes using [TheTVDB] Auto-detected query: [The Walking Dead] Fetching episode data for [The Walking Dead] Fetching episode data for [Talking Dead] Fetching episode data for [The Walking Dead Black And White] [TEST] Rename [D:\Volumes\Descargas\05 RENOMBRAR\RENOMBRAR SERIES\The Walking De...
by rednoah
20 Oct 2013, 14:21
Forum: Scripting and Automation
Topic: AMC Weird (can not do --action move or hardlink)
Replies: 12
Views: 7942

Re: AMC Weird (can not do --action move or hardlink)

Just deleting some *.rar files is easy. You can modify amc.groovy yourself or just call your own delete script afterwards.
by rednoah
20 Oct 2013, 13:15
Forum: Help and Support
Topic: anidb script
Replies: 1
Views: 2021

Re: anidb script

Not supported. No idea if AniDB even has an API for artwork.
by rednoah
20 Oct 2013, 13:14
Forum: Feature Requests and Bug Reports
Topic: (Incorrect Match) Atlantis
Replies: 4
Views: 3360

Re: (Incorrect Match) Atlantis

You can try r1800 and see if it works better.
by rednoah
20 Oct 2013, 03:46
Forum: Episode / Movie Naming Scheme
Topic: Adding resolution to filename
Replies: 8
Views: 12997

Re: Adding resolution to filename

The x86/x64 msi packages are in the sourceforge download section. ;

The msi should install to Program Files or Program files (x86). FileBot itself is Java code, so platform-independent, same Java code run everywhere. Only once it's loading native code like libmediainfo the architecture must match.
by rednoah
19 Oct 2013, 19:56
Forum: Episode / Movie Naming Scheme
Topic: Adding resolution to filename
Replies: 8
Views: 12997

Re: Adding resolution to filename

Check the FAQ for trouble shooting tips ;) Q: Why does MediaInfo not work? Why is 7zip not working? I'm running on 64-bit Windows and installed FileBot x64? A: If you're on 64-bit Windows but are actually running a 32-bit Java runtime, the whole java process will be in 32-bit compability mode, so th...
by rednoah
19 Oct 2013, 07:11
Forum: Scripting and Automation
Topic: AMC Weird (can not do --action move or hardlink)
Replies: 12
Views: 7942

Re: AMC Weird (can not do --action move or hardlink)

1. I guess {n} is the file name, folder name looks like this:

Code: Select all

{folder.name}
2. What's not working about this one? It's gonna count all files that are not folders:

Code: Select all

{folder.listFiles().sum{ it.isFile() ? 1 : 0 }}
3. That one is already in the original mi script:

Code: Select all

{file.path}
by rednoah
19 Oct 2013, 04:20
Forum: Scripting and Automation
Topic: AMC Weird (can not do --action move or hardlink)
Replies: 12
Views: 7942

Re: AMC Weird (can not do --action move or hardlink)

You mean the number formatting?

Code: Select all

{(folder.listFiles().sum{ it.length() } / (float)(1024.power(3))).round(2)}
Just play with it. All really basic groovy code. You can play with all that in the GUI and the paste it into the script.
by rednoah
19 Oct 2013, 03:03
Forum: Scripting and Automation
Topic: AMC Weird (can not do --action move or hardlink)
Replies: 12
Views: 7942

Re: AMC Weird (can not do --action move or hardlink)

* Can't have release date. The mi script doesn't do media detection so you only get data based on file name or file content.

* Subtitle en,fr might be a bit tricky. You'd have to check files in the same folder and count subtitles.
by rednoah
18 Oct 2013, 20:05
Forum: Help and Support
Topic: MyEpisodes intergration has stopped working
Replies: 8
Views: 6647

Re: MyEpisodes intergration has stopped working

Did a check and it works. Some shows may not work if the names on the different sites don't match.
by rednoah
18 Oct 2013, 14:17
Forum: Scripting and Automation
Topic: AMC: temporary location for processing
Replies: 11
Views: 7346

Re: AMC: temporary location for processing

Have you played with the exec options of AMC?
--def exec=command {file} Run program on newly processed files
It'll be called on each media file that has been processed. So you can have the amc kick-off your script.


e.g.

Code: Select all

--def "exec=/bin/update-artwork \"{folder}\""
by rednoah
18 Oct 2013, 11:55
Forum: Scripting and Automation
Topic: AMC Weird (can not do --action move or hardlink)
Replies: 12
Views: 7942

Re: AMC Weird (can not do --action move or hardlink)

1. Might be a cache issue with outdated objects. Try r1795. 2. Basic support for Anime => Video files with Japanese audio and ASS subtitles will be processed via AniDB instead of TheTVDB 3. AMC doesn't delete files that are being seeded. 4. Good idea, sourceforge already does that => http://sourcefo...
by rednoah
18 Oct 2013, 11:24
Forum: Scripting and Automation
Topic: Heelpp Plz!
Replies: 1
Views: 2021

Re: Heelpp Plz!

1. Don't use invoke.vbs
2. Check amc troubleshooting hints
3. Run manually in cmd and see what happens

I'd escape the email address because of @ but that's just a hunch. I guess invoke.vbs messes up the arguments. I don't recommend using it anymore.
by rednoah
18 Oct 2013, 11:21
Forum: Help and Support
Topic: Fully automated media downloading
Replies: 53
Views: 38085

Re: Fully automated media downloading

I guess utorrent-postprocess / amc has come a long way since you started this thread! :D
by rednoah
18 Oct 2013, 11:20
Forum: Scripting and Automation
Topic: AMC: temporary location for processing
Replies: 11
Views: 7346

Re: AMC: temporary location for processing

I doesn't remember what has been moved. After move it doesn't have to worry about it anyway. Artwork will only be downloaded if it doesn't already exist.

So you generate extra artwork? Why not just check if your extra artwork already exists or not per movie folder?
by rednoah
18 Oct 2013, 05:49
Forum: Scripting and Automation
Topic: AMC: temporary location for processing
Replies: 11
Views: 7346

Re: AMC: temporary location for processing

Usually people use the amc script to sort files from an incoming folder to the output folder structure: http://www.filebot.net/forums/viewtopic.php?f=4&t=215 So everything in incoming is either untreated, or can't be auto-sorted, and the rest is moved the the final folder structure (which mustn'...
by rednoah
17 Oct 2013, 14:33
Forum: Help and Support
Topic: if statement
Replies: 2
Views: 2651

Re: if statement

It's that simple:

Code: Select all

{'.'+source}
If source fails, the whole {...} expression unwinds.


Plenty of examples here:
http://www.filebot.net/forums/viewtopic.php?f=5&t=2
by rednoah
17 Oct 2013, 10:06
Forum: Help and Support
Topic: Just NFO no artwork??
Replies: 1
Views: 2720

Re: Just NFO no artwork??

No and No. But I can't stop you from modifying the scripts. ;)
by rednoah
17 Oct 2013, 09:09
Forum: Scripting and Automation
Topic: More terms to exclude
Replies: 10
Views: 6747

Re: More terms to exclude

Of course, English (or at least original title) always works, in addition to the localized title.

Just set the format like this:

Code: Select all

--format "{primaryTitle} ({y})"
by rednoah
17 Oct 2013, 08:27
Forum: Scripting and Automation
Topic: More terms to exclude
Replies: 10
Views: 6747

Re: More terms to exclude

If you're renaming Spanish movies, it's best to set --lang=es so filebot can match against the Spanish title, English will work as well since the original title (probably English) is known as well. In the format you can then switch Spanish title {n} with the (probably) English title {primaryTitle}: ...
by rednoah
17 Oct 2013, 08:08
Forum: Scripting and Automation
Topic: More terms to exclude
Replies: 10
Views: 6747

Re: More terms to exclude

"05" ended up as query as well so it got extra results. The problem isn't the query but that you're matching spanish filenames with english data. Just doesn't match up. Having the year in the filename would help a lot. "06 CODIFICAR" doesn't matter cause the search doesn't come u...
by rednoah
17 Oct 2013, 06:38
Forum: Help and Support
Topic: Fully automated media downloading
Replies: 53
Views: 38085

Re: Fully automated media downloading

The syntax for that one change completely... long ago..

It's --def name=value name=value now:

Code: Select all

--def xbmc=localhost