Search found 22990 matches

by rednoah
10 Jan 2014, 16:09
Forum: Scripting and Automation
Topic: copy to FTP server
Replies: 3
Views: 2610

Re: copy to FTP server

Not sure if you're talking Windows, Linux or Mac, but in any case there should be a way to mount the the FTP/SMB shares as local drives or folders making things appear as if they are local files. If you have any cmdline tools that you can use to upload things then you can play with doing your own up...
by rednoah
10 Jan 2014, 16:02
Forum: Scripting and Automation
Topic: [CODE] Snippets & Examples
Replies: 11
Views: 33484

Re: [CODE] Examples and Snippets

Here's an example of how to plug in your rename function and copy files to a remote server via SSH/SFTP without creating any temporary files. Because scp won't create folders for us we have to call mkdir on the server first. include('fn:lib/ant') def copy_scp = { from, to -> def remoteHost = 'www.ex...
by rednoah
10 Jan 2014, 13:26
Forum: Scripting and Automation
Topic: copy to FTP server
Replies: 3
Views: 2610

Re: copy to FTP server

Sorry, that's not supported, you can only use the local filesystem. I recommend just copying to a temporary location and then syncing everything to your ftp either with filebot scripts or other ftp tools of your choice.
by rednoah
10 Jan 2014, 13:20
Forum: Feature Requests and Bug Reports
Topic: msiexec error 1603
Replies: 6
Views: 5189

Re: msiexec error 1603

Yep, that's basically a generic error code that doesn't tell us anything...

Do you get this all the time? Even if you just grab the .msi?

You could try this guide and see if we can get some extra logging:
http://www.msigeek.com/715/how-to-troub ... stallation
by rednoah
10 Jan 2014, 07:38
Forum: Feature Requests and Bug Reports
Topic: Law & Order SVU
Replies: 6
Views: 4967

Re: Law & Order SVU

Looks good to me. Try with the latest revision: Parameter: ut_kind = multi Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: ut_dir = D:\workspace\testdata\AMC-TEST Input: D:\workspace\testdata\AMC-TEST\Law.and.Order.SVU.S15E10.720p.HDTV.X264-DIMENSION\Law.and.Order.SVU.S15E10.720p.HD...
by rednoah
09 Jan 2014, 19:51
Forum: Feature Requests and Bug Reports
Topic: Law & Order SVU
Replies: 6
Views: 4967

Re: Law & Order SVU

send me the file paths so i can test with
by rednoah
09 Jan 2014, 14:44
Forum: Help and Support
Topic: query on a show with different country versions
Replies: 5
Views: 3679

Re: query on a show with different country versions

Having files named The Big Bang Theory or Big Bang Theory shouldn't affect the auto-detection matching process since both are considered valid alias. Forcing the name is easy in the format, but at this point filebot already has decided on an Episode match. Not sure what you're looking for. Is it hav...
by rednoah
09 Jan 2014, 07:52
Forum: Help and Support
Topic: Occasionally subs from previuos search are taken
Replies: 4
Views: 3200

Re: Occasionally subs from previuos search are taken

Can u send me the output logs for a call that shows this issue? Not sure how to look into this problem right now.
by rednoah
09 Jan 2014, 01:52
Forum: Scripting and Automation
Topic: Latest Update broke it!
Replies: 1
Views: 1853

Re: Latest Update broke it!

2. Include log output
Pretty Please~
by rednoah
09 Jan 2014, 01:45
Forum: Scripting and Automation
Topic: Subtitle Subdirectory, AMC
Replies: 8
Views: 7069

Re: Subtitle Subdirectory, AMC

Well, you can test with the CLI as well it'll just take longer. :D Your format doesn't make sense cause the if the file is a subtitles the final name would be "......subs/" (and not end with an actual filename). Once you understand how the format works you'll see that it's not strange at a...
by rednoah
08 Jan 2014, 21:20
Forum: Scripting and Automation
Topic: Subtitle Subdirectory, AMC
Replies: 8
Views: 7069

Re: Subtitle Subdirectory, AMC

Just build that into your format expression. Play with the GUI format editor to work out your format before you make it work with amc.
by rednoah
08 Jan 2014, 19:08
Forum: Feature Requests and Bug Reports
Topic: UNCUT, EXTENDED, DIRECTORS CUT
Replies: 23
Views: 17843

Re: UNCUT, EXTENDED, DIRECTORS CUT

Just add a unqiue() call:

Code: Select all

.sort().unique()
by rednoah
08 Jan 2014, 17:46
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 543392

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

hahaha, never bothered to actually look it up Wife with Wife - Absolutely Not For Children :lol:
by rednoah
08 Jan 2014, 17:30
Forum: Feature Requests and Bug Reports
Topic: UNCUT, EXTENDED, DIRECTORS CUT
Replies: 23
Views: 17843

Re: UNCUT, EXTENDED, DIRECTORS CUT

This one definitely works:

Code: Select all

{' (' + fn.matchAll(/extended|uncensored|remastered|unrated|uncut|directors.cut|special.edition/)*.upperInitial()*.lowerTrail().sort().join(', ').replaceAll(/[._]/, " ") + ')'}
@see http://snag.gy/PLIPX.jpg
by rednoah
08 Jan 2014, 07:43
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 543392

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Haha, this one is really bad luck! :D There's an anime names:[つまつま 人妻×人妻, WWW, Wife with Wife] which allows WWW to be part of the query, and it gets matched to names:[Christopher Hitchens, www.raydragon.com Presents...] :D Maybe shitty data in the IMDb when that one was scraped. Try one of the lates...
by rednoah
08 Jan 2014, 05:58
Forum: Help and Support
Topic: Particular Series
Replies: 23
Views: 11807

Re: Particular Series

Send me the paths and I can try for myself. If you look at the 2 lines of SxE you'll notice that it just does two renames, once to add lots of extra info like airdate and a second to then rename again with normal SxE order matching by airdate/title. I don't see why it wouldn't execute the second lin...
by rednoah
08 Jan 2014, 05:50
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 543392

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

This will catch it:

Code: Select all

www[.][\w-.]+[.](com|net|tk|ro|cd|me|de)
Give me the whole path and I'll have a look which token is messing with it.
by rednoah
07 Jan 2014, 16:47
Forum: Scripting and Automation
Topic: How can i ignore the foldername?
Replies: 4
Views: 3483

Re: How can i ignore the foldername?

I added DDL to the global blacklist anyway. If you try again next week it should work better.
by rednoah
07 Jan 2014, 13:35
Forum: Scripting and Automation
Topic: How can i ignore the foldername?
Replies: 4
Views: 3483

Re: How can i ignore the foldername?

Have you tried -non-strict?
by rednoah
07 Jan 2014, 13:33
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

1. Windows CMD is weird. I've added logging into the Java core by now. Just set something like --log-file amc.log 2. The second gmail error is probably due to some modification you made, or it was broken when you copied it. Either way I can't really be bothered to maintain forks and outdated version...
by rednoah
06 Jan 2014, 18:25
Forum: Help and Support
Topic: QNAP - Transmission - FileBot
Replies: 9
Views: 7881

Re: QNAP - Transmission - FileBot

Of course the answer is "No, it's suppose to work fine with those parameters" . How else would the script know what folder to process? Look at the docs: https://trac.transmissionbt.com/wiki/Scripts#OnTorrentCompletion First you figure out how you access these variables in your shell script...
by rednoah
06 Jan 2014, 17:04
Forum: Help and Support
Topic: QNAP - Transmission - FileBot
Replies: 9
Views: 7881

Re: QNAP - Transmission - FileBot

Yes, that's where these mysterious environment variables are supposed to be coming from: $TR_TORRENT_DIR/$TR_TORRENT_NAME That's the first thing I would be testing. That transmission is in fact passing those variables along. ;) Also it is likely that you can only set one script, unless the docs say ...
by rednoah
06 Jan 2014, 12:56
Forum: Help and Support
Topic: Spk edit?
Replies: 2
Views: 2106

Re: Spk edit?

Please raise any issues with the synology package with the official maintainers directly.

I only maintain portable and ipkg package which you may be able to use once java is working.
by rednoah
06 Jan 2014, 06:32
Forum: Scripting and Automation
Topic: Sabnzbd Setup
Replies: 2
Views: 2929

Re: Sabnzbd Setup

1. Tells you it's a cmdline tool: since filebot/amc is really just a cmdline tool you can probably make it work with any software that can run external programs, or just call it every once in a while with scheduler or cron. 2. Shows you a video how it is just a cmdline tool: http://www.youtube.com/w...