XBMC Community Forum
[RELEASE] Pneumatic - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (/forumdisplay.php?fid=151)
+---- Thread: [RELEASE] Pneumatic (/showthread.php?tid=97657)



- Adam B. - 2011-07-06 17:24

I love the idea of this script.

I was thinking about signing up for a service like netflix, so I can have the fast instant streaming of a large library, but I can't justify it if I already have a usenet account. This gives me the best of both worlds.

This is more of a pipe dream, but I'd love for this to be somehow integrated into the library with fanart, metadata, etc. Ideally, I'd replace all of my storage with streaming.


- idlerobbo - 2011-07-07 00:36

activate Wrote:Thanks, I will try that. Imagine the potential if we could get his to work on atv2.

+1 - this would be immense! no update I guess?


- Popeye - 2011-07-11 14:56

Been away on vacation for a while and didn't find the time to code Big Grin . For you atv2 users, where are you running sab, locally or remote?
Regarding nightly builds, I haven't looked into that yet. If you are using them and getting crashes, please dig through the logs and post the data (build, os, etc etc ) ...


- Kewlj1313 - 2011-07-13 02:19

Popeye Wrote:Been away on vacation for a while and didn't find the time to code Big Grin . For you atv2 users, where are you running sab, locally or remote?
Regarding nightly builds, I haven't looked into that yet. If you are using them and getting crashes, please dig through the logs and post the data (build, os, etc etc ) ...

Glad to hear you are back Popeye! Looking forward to doing some further development and testing.

Thanks for this awesome script!! Can't wait to make it more stable.


- dr99 - 2011-07-13 02:35

Popeye Wrote:Been away on vacation for a while and didn't find the time to code Big Grin . For you atv2 users, where are you running sab, locally or remote?
Regarding nightly builds, I haven't looked into that yet. If you are using them and getting crashes, please dig through the logs and post the data (build, os, etc etc ) ...

I think the crashing on the nightlies was a problem on my end because it is not doing it anymore.


- activate - 2011-07-13 02:44

WB Popeye.

Not crashing but trying to stream it onto atv2.

Setup is as follows:

Plugin installed on atv2.
SAB installed on Imac using https/http.
Network share is SMB.

I will retry this later on today and grab you a log. Thanks.


- Popeye - 2011-07-13 09:54

activate Wrote:WB Popeye.

Not crashing but trying to stream it onto atv2.

Setup is as follows:

Plugin installed on atv2.
SAB installed on Imac using https/http.
Network share is SMB.

I will retry this later on today and grab you a log. Thanks.

For streaming to work, my script has to be able to create fake rar's in the SAB incomplete folder. Guess it should work if you have the smb share mounted just as a locally accessible folder (e.g. /mySmbShare)..


- pankepasa - 2011-07-14 14:35

Hi, I've been trying to get this working on Ubuntu Natty and I get an error all the time. I've configured all the requirements: api key, nzbs id, key, writeable temp dir, sabnzb 6.5, streaming option... The script adds the nzbs to sabnzb but I don't see the rars in the temp dir. This is the error log:

Quote:4:30:26 T:140167245432576 M:6813274112 NOTICE: -->Python Interpreter Initialized<--
14:30:29 T:140167245432576 M:6817779712 ERROR: Error Type: exceptions.TypeError
14:30:29 T:140167245432576 M:6817779712 ERROR: Error Contents: function takes at most 4 arguments (5 given)
14:30:29 T:140167245432576 M:6817779712 ERROR: Traceback (most recent call last):
File "/home/ramon/.xbmc/addons/plugin.video.nzbs/default.py", line 630, in ?
listVideo(params)
File "/home/ramon/.xbmc/addons/plugin.video.nzbs/default.py", line 215, in listVideo
listFile(nzbname)
File "/home/ramon/.xbmc/addons/plugin.video.nzbs/default.py", line 242, in listFile
progressDialog.update(0, 'Request to SABnzbd succeeded', 'Waiting for first rar', 'Waiting for download to start', label)
TypeError: function takes at most 4 arguments (5 given)
Any idea? Many thanks for the script!


- Popeye - 2011-07-14 14:51

pankepasa Wrote:Hi, I've been trying to get this working on Ubuntu Natty and I get an error all the time. I've configured all the requirements: api key, nzbs id, key, writeable temp dir, sabnzb 6.5, streaming option... The script adds the nzbs to sabnzb but I don't see the rars in the temp dir. This is the error log:


Any idea? Many thanks for the script!

Its' an error in my code! Big Grin The last line of the log states the error is due to progressDialog.update is fed with 5 arguments and it only accepts 4. I Haven't discovered it due to the folder creation is quick in my system.
Just remove one of the statements or replace
Code:
progressDialog.update(0, 'Request to SABnzbd succeeded', 'Waiting for first rar', 'Waiting for download to start', label)
with
Code:
progressDialog.update(0, 'Request to SABnzbd succeeded', 'Waiting for first rar and for download to start', label)



- pankepasa - 2011-07-15 11:04

That did it, thanks Popeye.

Something great would be to gather movie info with the imdb add-on or ideally with the one configured by the user.

The idea is just awesome, really, you are going to be big if this gets full integration with things I guess are technically doable but time consuming like browsing in xbmc library style (you should use the scanning functions against the nzbs.org rss info and list the contents as the local content library), don't know just an idea among many others, but hey, well done my friend!