Search found 21 matches

by dagoob
17 May 2017, 14:16
Forum: Feature discussion
Topic: [New Feature] Unpack during downloading
Replies: 40
Views: 126720

Re: [New Feature] Unpack during downloading

hugbug wrote:ReorderFiles=yes (active by default) in settings section "DOWNLOAD QUEUE";
Do scripts like FakeDetector and PasswordDetector play nice with this, since they reorder RARs for faster detection?
by dagoob
06 Feb 2017, 16:45
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

I have some pings in the 100-140 range, but mine are all under 200.
by dagoob
01 Feb 2017, 23:15
Forum: Support
Topic: Issue with Paths and Categories
Replies: 2
Views: 2283

Re: Issue with Paths and Categories

northernivy wrote:it seems that movies are being placed in the following directory:/volume1/downloads/complete/volume1/media/movies/
Put a / at the start of your Category DestDir so it reads:

Code: Select all

/volume1/media/movies/
otherwise you're specifying a subdirectory of your MainDir, hence the results you observed.
by dagoob
11 Jan 2017, 17:06
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

It's been working really well for me. Most of my loop messages are showing one loop (less than 10% hit the 5th loop).
by dagoob
29 Dec 2016, 21:39
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

034 is looking really good in my testing so far, both on "problematic" things and very, very fresh downloads. Thanks kloaknet! :D
by dagoob
20 Dec 2016, 18:19
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

I've set it to use the main server for the checks. If it's only using the one server then the script is opening the same number of connections in both version of the script, so you won't see the kind of speed change I've observed. @kloaknet To be clear my "To many connections" have only occurred du...
by dagoob
20 Dec 2016, 17:55
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

How many servers you have and how many of them are needed to complete the check is a factor. I have quite a lot of different block accounts some of which are slow. The old version would make all of those connections then maybe pass the check with my main server; the newer version only makes the conn...
by dagoob
20 Dec 2016, 16:30
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

But what if the content simply isn't rar'ed? Say it's tiny like an ebook? I'd say if they user added the NZB they wanted to download it: The script should check it, and proceed based on those results. Incidentally, the 030 testing version is so much faster for me that in my testing a 100% check only...
by dagoob
28 Nov 2016, 23:01
Forum: Extension scripts
Topic: [SQS-Script] Completion-Propagation/DMCA/Retention check
Replies: 276
Views: 545680

Re: [SQS-Script] Completion-Propagation/DMCA/Retention check

@dagoob: the position of line 1009 is not an issue for the code after the block between lines 1015 and 1018, as the actual looping over the articles happens from line 1025. So if one of the servers has issues on all connections, it will continue to the next one in the for loop starting at line 999....
by dagoob
28 Nov 2016, 05:39
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527932

Re: [PP-Script] VideoSort - better video sorting

Upgrading guessit on my system (a requirement for more recent versions of flexget) broke this script for me. But the script uses its own guessit lib... Looks like it's appending the lib dir to the end of the path, rather than adding at the start? sys.path.append(dirname(__file__) + '/lib') as oppose...