Search found 33 matches

by minimeh
08 Jul 2018, 22:32
Forum: Support
Topic: Crash in Windows when idle
Replies: 3
Views: 2733

Re: Crash in Windows when idle

I'm seeing the same: Periodic crash with release version every few days, absolutely stable with debug version. It's reminiscent of a time when I was working on a bug in a multi-threaded application. It would randomly crash. Debug version was fine. So I sprinkled OutputDebugString (Windows) messages ...
by minimeh
18 Mar 2015, 19:52
Forum: Extension scripts
Topic: [PP-Script] NotifyPlex - Library Update and GUI Notification
Replies: 58
Views: 252982

Re: [PP-Script] NotifyPlex - Library Update and GUI Notifica

There is a "sanity check" in notifyplex.py: if not 'NZBPP_STATUS' in os.environ: print('*** NZBGet post-processing script ***') print('This script is supposed to be called from NZBGet v13.0 or later.') sys.exit(POSTPROCESS_ERROR) This check is valid only for post processing scripts (NZBPP_STATUS is ...
by minimeh
24 Jan 2015, 22:57
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

Thanks minimeh, could you post a couple of lines more? I am not 100% which lines to actually replace. Would it look like this: You got the placement right but you have one mistake. Additionally, I just fixed a bug with my patch (the original post has been corrected). The mistake that you have is at...
by minimeh
24 Jan 2015, 20:07
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

or is that due to my configuration? It's not your config, it's the guessit library (used by the script). Will see how to fix the crash at least. I just dl'd "22 Jump Street 2014 1080p BluRay x264 YIFY" and had no problems with VideoSort patched as described in the post: http://nzbget.net/forum/view...
by minimeh
06 Jan 2015, 19:30
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

That's a good question that I was wondering myself! All paths listed did exist and were created by nzbget itself. I didn't have any of the files locked in another process.

I don't know the answer.
by minimeh
06 Jan 2015, 10:08
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

I just ran into another odd-ball case that confounds guessit which leads to errors in videosort. The file name is "71.2014.720p.Web-Dl.x264.Aac-IFT.mkv". ( See http://www.imdb.com/title/tt2614684/?ref_=nv_sr_2.) Turning on verbose in videosort, here are the log entries: https://dognzb.cr/details/657...
by minimeh
10 Dec 2014, 12:16
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

Yup, that's exactly what the code does: It changes every instance of h264 to x264. It seemed like that's what you were asking for. If you want to change only when the video format is 'HDTV', then this would work: if guess['videoCodec'] == 'h264' and guess['format'] == 'HDTV': guess['videoCodec'] = '...
by minimeh
09 Dec 2014, 20:50
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

Is this bad? The problem for me is that Sickgear specifies that HDTV should contain x264. So it messes up the sorting, I assume the other Sick* forks uses the same rename function. One of the great aspects of nzbget is DIY customizations. You can use a text editor to modify your copy of videosort.p...
by minimeh
05 Dec 2014, 09:07
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

Interesting problem (albeit frustrating). I first thought maybe it was something in Python 2.7.8. I have 2.7.7 still and have not seen the problem. The Python 2.7.8 download page( https://www.python.org/downloads/release/python-278/ ) lists "A regression in the mimetypes module on Windows has been f...
by minimeh
03 Dec 2014, 19:12
Forum: Extension scripts
Topic: [PP-Script] VideoSort - better video sorting
Replies: 461
Views: 527637

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

I opened an issue ticket on the guessit project site: https://github.com/wackou/guessit/issues/177 Developer wackou just closed the ticket with the comment: what you really need to write if you want to do it like in the first example is the following: >>> matcher = guessit.matcher.IterativeMatcher(...