Search found 160 matches

by Puzzled
June 21st, 2019, 4:29 pm
Forum: General Help
Topic: Incorrect free space
Replies: 56
Views: 31046

Re: Incorrect free space

Regarding this issue I think you have to use df to get the correct free disk size. Judging from Google results the output is very similar to GNU/Linux.
by Puzzled
June 21st, 2019, 3:07 pm
Forum: General Help
Topic: How to run 2 post processing script
Replies: 15
Views: 7823

Re: How to run 2 post processing script

You'll have to put quotes around C:\Program Files\SABnzbd\scripts\Deobfuscate[dot]py because of the space but otherwise I think it should work if you have configured the mp4_automator ini correctly. Put the bat file in C:\Program Files\SABnzbd\scripts\. Such things rarely work the first time, though...
by Puzzled
June 21st, 2019, 3:02 am
Forum: Bug Reports
Topic: Decoder failure: Out of memory
Replies: 52
Views: 23531

Re: Decoder failure: Out of memory

Are they using a sabyenc version compiled before this commit? https://github.com/sabnzbd/sabyenc/comm ... 3bbbb0e04b
by Puzzled
June 20th, 2019, 4:36 pm
Forum: Bug Reports
Topic: Decoder failure: Out of memory
Replies: 52
Views: 23531

Re: Decoder failure: Out of memory

safihre: Maybe you could add a sanity check for the amount of RAM it tries to malloc and give an error that doesn't pause the downloading if it's clearly wrong (negative or > 15M)? Don't know if that's the issue, but at least you'd find out.
by Puzzled
June 20th, 2019, 4:22 pm
Forum: General Help
Topic: How to run 2 post processing script
Replies: 15
Views: 7823

Re: How to run 2 post processing script

Try a bat file first, those are the simplest. Open Notepad and save these two lines as postscript.bat in the same directory as deobfuscate.py:
python deobfuscate.py %*
python mp4_automator.py %*

You may need to use the full path to both python and the two scripts.
by Puzzled
June 20th, 2019, 12:40 pm
Forum: Bug Reports
Topic: Decoder failure: Out of memory
Replies: 52
Views: 23531

Re: Decoder failure: Out of memory

I notice it says segment bytes="-21730" for one of the articles, but I don't think that's used in the decoder. It might depend on which usenet server is being used.
by Puzzled
June 20th, 2019, 4:47 am
Forum: General Discussion
Topic: Does Sabnzbd Client have VPN Protection ?
Replies: 1
Views: 6219

Re: Does Sabnzbd Client have VPN Protection ?

You would need to use an external VPN service to get VPN but it's not necessary in order to hide the content. If you enable SSL and set Certificate verification to strict (enable advanced first) then your service provider can't see what you are downloading. You only need VPN if you want to hide that...
by Puzzled
June 19th, 2019, 10:54 am
Forum: General Help
Topic: How to run 2 post processing script
Replies: 15
Views: 7823

Re: How to run 2 post processing script

You probably don't have the full Python executable, only the DLL from SABnzbd, so I think you need to call them from another Python script. Unfortunately I don't know how to do that.
by Puzzled
June 16th, 2019, 3:52 am
Forum: General Help
Topic: Post Process Script error - No attribute session [Sickrage]
Replies: 6
Views: 3443

Re: Post Process Script error - No attribute session [Sickrage]

I assume you mean this? https://github.com/SickGear/SickGear/issues/1029

Can you open command line on the NAS, run these commands and post the results?
python -m pip install -U requests
python -c "import requests; print(requests.__version__)"
by Puzzled
June 11th, 2019, 10:50 am
Forum: Bug Reports
Topic: Sab unpack fails with some Python error
Replies: 15
Views: 7376

Re: Sab unpack fails with some Python error

I don't think it found the 7zip executable. Is 7z or 7za in /usr/bin/?
by Puzzled
June 9th, 2019, 2:36 pm
Forum: General Help
Topic: Incorrect free space
Replies: 56
Views: 31046

Re: Incorrect free space

I googled a little, and may have found some clues. It seems Mac statvfs uses unsigned int for free blocks, which can be too little: https://github.com/osxfuse/osxfuse/issues/396 In some cases users may be confused because some disk programs subtract space used for Time Machine backups when showing f...
by Puzzled
June 9th, 2019, 3:03 am
Forum: General Help
Topic: Automatic Login Problem
Replies: 1
Views: 1284

Re: Automatic Login Problem

Either I have misunderstood something, or you have. You set the password in the settings to make SABnzbd ask for a password, not to do the login automatically. If you don't want to be asked for a password you need to remove it from the settings. Regarding Sonarr, SABnzbd is probably not starting aut...
by Puzzled
June 4th, 2019, 6:08 am
Forum: General Help
Topic: Downloading slow with ASUS RT-N66U Router
Replies: 6
Views: 2496

Re: Downloading slow with ASUS RT-N66U Router

Could you try with various numbers of total connections, for instance 1, 2, 4 and 8, and tell us how it influences the speed? It seems like several people are limited to the same speed of about 2.5 MB/s, and it's interesting that it may be router dependent.
by Puzzled
June 2nd, 2019, 2:45 pm
Forum: Post-Processing Scripts
Topic: [Bash] Run command for every new file downloaded
Replies: 6
Views: 4504

Re: [Bash] Run command for every new file downloaded

From what I understand, your problem is that the timestamp is from when the mkv was generated, but you want it to be the day you downloaded the file? Unless the mkv file name is always the same as the job name + .mkv I think it would be easier to touch it and then move it to the movies folder.
by Puzzled
June 2nd, 2019, 3:49 am
Forum: General Help
Topic: Upgrading a Git repository
Replies: 5
Views: 1894

Re: Upgrading a Git repository

Maybe you're on a tag, or maybe you're on a local branch that's not connected to the remote. What does "git branch -a" say?