[RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux)
Quote:1 issue though: can't get the remote to work. I enabled the web remote in the settings and have xdotool installed. Netflix completely ignores my remote

Ok, I managed to fix the problem. On my system the keynames for xdotool are case sensitive

from line 849 and onwards in default.py, I changed to code to this:
Code:
if "chrome" in procAll or "chromium" in procAll:
                if action in [ACTION_SHOW_INFO, ACTION_SHOW_GUI, ACTION_STOP, ACTION_PARENT_DIR, ACTION_PREVIOUS_MENU, $
                    subprocess.Popen('xdotool key Escape', shell=True)
                    subprocess.Popen('xdotool key alt+F4', shell=True)
                    self.close()
                elif action==ACTION_SELECT_ITEM:
                    subprocess.Popen('xdotool key Return', shell=True)
                elif action==ACTION_MOVE_LEFT:
                    subprocess.Popen('xdotool key Left', shell=True)
                elif action==ACTION_MOVE_RIGHT:
                    subprocess.Popen('xdotool key Right', shell=True)
                elif action==ACTION_MOVE_UP:
                    subprocess.Popen('xdotool key Up', shell=True)
                elif action==ACTION_MOVE_DOWN:
                    subprocess.Popen('xdotool key Down', shell=True)
            else:
                self.close()

Works like a charm now. Impressive piece of work, your addon feels like a native XBMC addon Smile

*edit* search function is broken unfortunately, will try to hunt down what's causing it.
*edit2* ok, it's not broken, your addon just doesn't handle empty search results. I added this at line 191:
Code:
if "galleryVideos" not in content:
        xbmcgui.Dialog().ok("NetfliXBMC", "No results", "This search returned no results")
        return


Do you accept pull requests on github, or do you rather want to keep this in own hands? I have some python experience, but this is my first time working with XBMC addons.

Quote:Now suggestions work, but no luck for kids section.
I'm using multiple profiles, kids section works fine.
Using XBMCbuntu on Intel NUC DN2820FYKH
Reply


Messages In This Thread
Search empty? - by cgrey - 2014-01-11, 06:13
Not working on windows 7 - by dandiodati - 2014-02-26, 21:55
RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - by boe2 - 2014-09-19, 21:17
Problems with this addon - by builderjer - 2014-11-30, 19:55
Logout Mark Read Team Forum Stats Members Help
[RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux)7