Search found 14 matches

by ObB
18 Nov 2019, 23:38
Forum: Support
Topic: History erased ... AGAIN!!!!
Replies: 0
Views: 5112

History erased ... AGAIN!!!!

This is the third time this has happened to me, so please excuse this rant ... NZBGet sometimes completely erases all History, and "Downloaded" stats. I'm running on a Raspberry Pi with the "MainDir" (and all of the data folders descended from that) on a USB attached hard drive. What happened this t...
by ObB
10 Aug 2017, 22:46
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527727

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

I'll submit to github in a few days. I freeeeeekin hate GitHub ... I forgot to submit the code I had, and now there are 9 commits that have been done since and now I have no clue how to update my fork. What I really want is a button on the website github.com that just updates my fork to whatever th...
by ObB
20 Jun 2017, 23:00
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527727

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

Bug in processing 'PreferNZBName" option.

The following is a test for True/False, but prefer_nzb_name is 'yes' or 'no'

This ...

Code: Select all

use_nzb_name = prefer_nzb_name and len(video_files) == 1
should be ...

Code: Select all

use_nzb_name = prefer_nzb_name == 'yes' and len(video_files) == 1
by ObB
20 Jun 2017, 22:52
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527727

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

(continuation of my earlier posts in this thread) I want to keep downloaded files in their download folder, but rename when the filename is obfuscated. I had been using %dn/%dn (%dn - original directory name (nzb-name)) which works well enough most of the time, except for multi-file NZBs, such as an...
by ObB
29 Aug 2016, 13:34
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527727

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

I think with these settings VideoSort should do what you need: MoviesDir= SeriesDir= DatedDir= MoviesFormat=%dn/%dn SeriesFormat=%dn/%dn DatedFormat=%dn/%dn That works too !! I did try to think of how to get the existing code to do what I wanted,but obviously I didn't think hard enough !! Not sure ...
by ObB
29 Aug 2016, 05:49
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527727

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

Here is my "problem" ... I'm mostly happy with the way that NZBGet puts all the files downloaded for an NZB in a folder using the "name" from the NZB header. I move these folders manually from NZBGet's DestDir to my own folder structure. Obfuscated filenames are not usually a problem for me as I am ...
by ObB
07 Mar 2016, 21:30
Forum: Feature discussion
Topic: [New Feature] Simultaneous NZB downloading
Replies: 14
Views: 22329

Re: [New Feature] Simultaneous NZB downloading

mannibis wrote:
ObB wrote: My primary provider is slow (700MB/s)
Do you mean KB/s?
:oops: ... yes indeed. Its included with my cable ISP and based on the headers its a Highwinds server with max 3 connections, each rate limited to 2mbps which allowing for overhead = ~700KB/s
by ObB
07 Mar 2016, 16:05
Forum: Feature discussion
Topic: [New Feature] Simultaneous NZB downloading
Replies: 14
Views: 22329

Re: [New Feature] Simultaneous NZB downloading

I have a slightly different reason for wanting to see simultaneous NZB downloading. My primary provider is slow (700MB/s) and short retention (60 days) but free, and I have backup block accounts on fast, long retention providers, but they cost money. If an NZB that is older than 60 days is added to ...
by ObB
05 Aug 2015, 20:26
Forum: Support
Topic: Downloads gets added to queue, but never starts.
Replies: 9
Views: 6214

Re: Downloads gets added to queue, but never starts.

I agree that in most cases you don't want your block account backup server downloading everything if the main server(s) are unavailable/disabled. Sometimes you do though, and now I know better how NZBGet works, I am able to adjust the server levels without much difficulty to make it do what I want. ...
by ObB
05 Aug 2015, 18:24
Forum: Support
Topic: Downloads gets added to queue, but never starts.
Replies: 9
Views: 6214

Re: Downloads gets added to queue, but never starts.

(Dammit ... typed out a long reply, but my login timed out and I lost it ... here's the short version) Hm, isn't the description for option Level clearly state to put the major serger on level 0 and use other levels for backup servers? Level (priority) of news server. The servers are ordered by thei...