Kodi Community Forum
[RELEASE] SABnzbd+ (Programs) Plugin - Manage SABnzbd and search for files from XBMC - 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] SABnzbd+ (Programs) Plugin - Manage SABnzbd and search for files from XBMC (/showthread.php?tid=76182)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23


- jitterbug - 2011-04-08

kricker Wrote:Hover over an item and let it scroll. You should see the size of the item. Switch to a list view where you can see more text.

thx for your reply, however I cant get the text scrolling, is there a newer version other than the one downloadable from within xdbc ?

btw. I used the confluence skin as default skin

edit. I forgot to mention that ive only tried with newzbin searches, since I only have acc there atm


- kricker - 2011-04-09

I don't think Newzbin returns any other data other than the name of the item. I believe all of the others do. I'll try to make a note of it and look into it when I get a free moment.


- jitterbug - 2011-04-09

kricker Wrote:I don't think Newzbin returns any other data other than the name of the item. I believe all of the others do. I'll try to make a note of it and look into it when I get a free moment.

yea, my bad - I should have checked the others before I went asking Wink
Again thx for a wonderful plugin that makes my new htpc setup complete


Stream from usenet yet? - lordindy - 2011-05-02

I've dabbled with NZBPlayer, and I have Sabnzbd+.
I saw that someone commented earlier on having this plugin try and "stream" immediately to play files as they download.
Any progress on this? I've used the IceFilms addon, and it's amazing, but having this addon stream from usenet (faster) would just be the end-all-be-all.

Cheers, and thanks to all of you who allow me to "cut the cord" from my big bad evil cable provider.


- kricker - 2011-05-02

lordindy Wrote:I've dabbled with NZBPlayer, and I have Sabnzbd+.
I saw that someone commented earlier on having this plugin try and "stream" immediately to play files as they download.
Any progress on this?.
Nope. Sorry.


- karatekickz - 2011-05-03

lordindy Wrote:I've dabbled with NZBPlayer, and I have Sabnzbd+.
I saw that someone commented earlier on having this plugin try and "stream" immediately to play files as they download.
Any progress on this? I've used the IceFilms addon, and it's amazing, but having this addon stream from usenet (faster) would just be the end-all-be-all.

Cheers, and thanks to all of you who allow me to "cut the cord" from my big bad evil cable provider.

I certainly don't want to steal any thunder from this sick plugin but some solid work on streaming via sab is being done here http://forum.xbmc.org/showthread.php?tid=97657

Thanks for all your great work kricker.


- kricker - 2011-05-03

No thunder stolen. Both plugins do different things. Thanks for the heads up on that one.


how to get Custom RSS feeds from Newzbin to the plugin ? - jakepe88 - 2011-05-10

Hi
i cant figure out how to get My personal RSS Newbin Feeds into the plugin
i have enable Custom source, but it is now showing in the list ?

Maybe i have misunderstood something, or is this not possible ?

Thanks in advanced..


- kricker - 2011-05-10

It is possible. Show me your file you added it to. Of course hide any ids or keys in the rss url.


- jakepe88 - 2011-05-10

Thank for your fast answer
i dont know exactly what you mean ?
have i taken my RSS feed and but it in my SABnzb Feed 1
in my RSS settings

I cant see where i cant customize it in the plugin,

Maybe you could describe how this normally should work ?


- kricker - 2011-05-10

You enable custom feeds in the add-on settings. Then you edit the settings.py file in the add-ons directory. In this case the add-on's folder is called "plugin.program.SABnzbd".
It'll either be in:
xbmc install directory\portable_data\addons\plugin.program.SABnzbd if in portable mode
or in:
path to user directory\AppData\Roaming\XBMC\addons\plugin.program.SABnzbd

Look for the section:
Code:
""" ADD CUSTOM RSS FEEDS HERE """
#add other rss feeds here, just copy an existing one and change the name and url
other_rss = [
]
Then add your custom feed there between the brackets, such as:
Code:
""" ADD CUSTOM RSS FEEDS HERE """
#add other rss feeds here, just copy an existing one and change the name and url
other_rss = [
'name':'NZBMatrix - Music', 'url':'http://rss.nzbmatrix.com/rss.php?cat=Music', 'category':'music'},
]



- jakepe88 - 2011-05-10

I tried but a keep getting a script failure when i open the plugin ?
For Your info : i am running XBMC on a Mac maybe that is the problem ?


- kricker - 2011-05-10

More than likely you have an issue with what you added to the settings.py file. Look over it carefully and make sure you don't have typos in it. Post it here if you want someone to look it over.


- jakepe88 - 2011-05-10

here it is :
""" ADD CUSTOM RSS FEEDS HERE """
#add other rss feeds here, just copy an existing one and change the name and url
other_rss = ['name':'Newzbin - Movies', 'url':'http://www.newzbin.com/search/?go=1&ss=390026&fpn=p]


- kricker - 2011-05-11

You are missing a closing ' and the category and the ending ,

Try:
Code:
other_rss = [
{'name':'Newzbin - Movies', 'url':'http://www.newzbin.com/search/?go=1&ss=390026&fpn=p', 'category':'movies'},
]