Kodi Community Forum
[RELEASE] Pneumatic - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151)
+---- Thread: [RELEASE] Pneumatic (/showthread.php?tid=97657)



- Popeye - 2011-08-26

j1nx Wrote:Take your time. I will be here. Have to wait for the next release with newznab support anyway. Wink

Waiting on who?


- j1nx - 2011-08-26

Popeye Wrote:Waiting on who?

I meant (as a joke). Your next release with the changes you made in respect to the timing issue.

I thought it was already in the source but not yet as a new release zip file.


- Popeye - 2011-08-26

Aha, sorry I haven't started with that problem yet. But the bug exist, just had to do a kill -9 . Right now I'm about to give up on the automatic streaming of multi archives. Even tried it on eden and the only good thing was that everything else works just fine. If I don't get it to work within the next few days I'll push a nzbs update with quite some polishing and then dig into the nzb.su bug....


- rflores2323 - 2011-08-26

Does this work on atv2


- Popeye - 2011-08-26

rflores2323 Wrote:Does this work on atv2

Buy Me One and I'll try ;D


- CrashX - 2011-08-26

Tested plugin on Linux and Windows. Everything works fine except the hang at the end of movie.

Here is minor fix for default.py:

Code:
def list_feed_nzb_su(feedUrl):
..
..
..
# Enable library mode & set the right view for the content
    xbmcplugin.setContent(int(sys.argv[1]), 'movies')
    
    return

You need to set the content for library mode to become active.


- nikc0069 - 2011-08-27

Popeye Wrote:Buy Me One and I'll try ;D

Unless we got some SMB write support in the nightlies (which may have happened as the logo downloader script now seems to work) then it shouldn't, should it?


- speed32219 - 2011-08-27

Popeye Wrote:It's been answered before in this thread but check the rss page on nzb.su and I'll hope you understand...

I looked through this thread and found nothing on my previous question, other than check with nzb.su rss feeds. Well I've done that and still no joy on what I should be looking for.

Success: For other noobs, to find and reference the NZB.su id i and NZB.su key r in addons do the following:
Log into nzb.su and at bottom of page in very small print click on rss info.
the beginning of the rss page starts with this:
Code:
Rss Feeds

Here you can choose rss feeds from site categories. The feeds will present either descriptions or downloads of Nzb files.

    Add this string to your feed URL to allow NZB downloads without logging in: &i=[b]27111[/b]&r=[b]2f3c9ead34lk9ag789j129k999[/b]

The id i number is 27111
The key r value is 2f3c9ead34lk9ag789j129k999

Put these values in the addons screen and you will be good to go.

Now it has been answered correctly.

Thank you for a great tool, it will now supplement the Icefilms addon.


- DV3B - 2011-08-27

speed32219 Wrote:The id i number is 27111
The key r value is 2f3c9ead34lk9ag789j129k999

Put these values in the addons screen and you will be good to go.

Now it has been answered correctly.

Thank you for a great tool, it will now supplement the Icefilms addon.

You realise that this ID/Key number is unique to your account and now that you've posted it anyone can use it.


- speed32219 - 2011-08-27

DV3B Wrote:You realise that this ID/Key number is unique to your account and now that you've posted it anyone can use it.

I'm letting anyone who wants to use it to do so. Big Grin


- DV3B - 2011-08-27

speed32219 Wrote:I'm letting anyone who wants to use it to do so. Big Grin

Thats very generous, just want to make sure your aware of this

Account changes and differences:

> default registration (free)
You're allowed 20 nzb downloads per day and 120 API hits.
This should be ok for most light SickBeard users and or web users.

> Standard Account ($5 - $10 usd donation lifetime)

You're allowed 50 nzb downloads per day and 500 API hits.
This should be enough for most Intermediate SickBeard users.

> Friend Account (greater than $10 usd donation lifetime)

You're allowed 250 nzb downloads per day and 4000 API hits.
This should be enough for most advanced SickBeard users, coupled with other uses (couchpotato, web, etc).


- Popeye - 2011-08-27

CrashX Wrote:Tested plugin on Linux and Windows. Everything works fine except the crash at the hang at the end of movie.

Here is minor fix for default.py:

Code:
def list_feed_nzb_su(feedUrl):
..
..
..
# Enable library mode & set the right view for the content
    xbmcplugin.setContent(int(sys.argv[1]), 'movies')
    
    return

You need to set the content for library mode to become active.

Thanks for the input. Can you explain a bit more why this is needed and the reason for the crash?


- timgt - 2011-08-28

CrashX Wrote:Tested plugin on Linux and Windows. Everything works fine except the crash at the hang at the end of movie.

Here is minor fix for default.py:

Code:
def list_feed_nzb_su(feedUrl):
..
..
..
# Enable library mode & set the right view for the content
    xbmcplugin.setContent(int(sys.argv[1]), 'movies')
    
    return

You need to set the content for library mode to become active.

I can't get the freezing to stop. I don't understand exactly where to put your code. I put the following lines after
def list_feed_nzb_su(feedUrl):
but I get a script error, so then I tried to take out the 3 sets of dots you had below that and kept the rest. This works but I cant find any shows or movies, lastly I took out the return and kept only
# Enable library mode & set the right view for the content
xbmcplugin.setContent(int(sys.argv[1]), 'movies')
after the
def list_feed_nzb_su(feedUrl):
and everything works but it still freezes after I watch something that has streamed.

Any suggestions? I would love to not have to close and reopen XBMC after everything I watch.


- Popeye - 2011-08-28

timgt Wrote:I can't get the freezing to stop. I don't understand exactly where to put your code. I put the following lines after
def list_feed_nzb_su(feedUrl):
but I get a script error, so then I tried to take out the 3 sets of dots you had below that and kept the rest. This works but I cant find any shows or movies, lastly I took out the return and kept only
# Enable library mode & set the right view for the content
xbmcplugin.setContent(int(sys.argv[1]), 'movies')
after the
def list_feed_nzb_su(feedUrl):
and everything works but it still freezes after I watch something that has streamed.

Any suggestions? I would love to not have to close and reopen XBMC after everything I watch.

You haven't written much code, right? ;D

Open the file in notepad and add the line "xbmcplugin.setContent(int(sys.argv[1]), 'movies')" on the line above the "return". Make sure you have the same indentation as "return" and the white space is space and not a tab. I'm trying it out right now and will push a new version if all works fine...


- timgt - 2011-08-28

Popeye Wrote:You haven't written much code, right? ;D

Open the file in notepad and add the line "xbmcplugin.setContent(int(sys.argv[1]), 'movies')" on the line above the "return". Make sure you have the same indentation as "return" and the white space is space and not a tab. I'm trying it out right now and will push a new version if all works fine...

Lol. Your assumption is correct I don't code. Wish I could. I will wait to hear back if you got it to work properly. Can't wait! This is really the only 2 plugins I use.