2011-08-26, 19:03
j1nx Wrote:Take your time. I will be here. Have to wait for the next release with newznab support anyway.
Waiting on who?
j1nx Wrote:Take your time. I will be here. Have to wait for the next release with newznab support anyway.
Popeye Wrote:Waiting on who?
def list_feed_nzb_su(feedUrl):
..
..
..
# Enable library mode & set the right view for the content
xbmcplugin.setContent(int(sys.argv[1]), 'movies')
return
Popeye Wrote:Buy Me One and I'll try ;D
Popeye Wrote:It's been answered before in this thread but check the rss page on nzb.su and I'll hope you understand...
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]
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.
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.
speed32219 Wrote:I'm letting anyone who wants to use it to do so.
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.
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.
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.
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...