Kodi Community Forum
[RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - 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: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154)
+---- Thread: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 (/showthread.php?tid=211574)



RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - joewet - 2015-04-12

(2015-04-12, 15:40)JasonPell Wrote: Also that YouTube video has the old plugin repo. Check first post of this thread.

It seems that this solve my problem.
Thank you very much and have a nice day.


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - MorbidNZ - 2015-04-12

Hey guys,

I'm getting SSL errors as well. I've just installed Kodi on my media player, a Windows 7 machine. Installed a new version of Chrome then downloaded Corona's repository. From there installed Chrome Launcher and then Netflixmbc. Configured it with my password/email.

Can't get even it to load - always crashes with Script Error.

So I thought it might be something wrong with my setup, so I've just installed fresh Kodi - followed same steps - on my desktop pc (Windows 8) and yup... same result. Script Error.


I've had a look at both the kodi.logs and its got the following:

7:22:48 T:7088 ERROR: C:\Users\***\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
07:22:49 T:7088 ERROR: C:\Users\***\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
07:22:50 T:7088 ERROR: Previous line repeats 3 times.
07:22:50 T:7088 NOTICE: URL: https://signup.netflix.com/Login
07:22:50 T:7088 ERROR: C:\Users\***\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
07:22:51 T:7088 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <class 'requests.exceptions.SSLError'>
Error Contents: [Errno 1] _ssl.c:510: error:14094410:SSL routines:SSL3_READ_BYTESConfusedslv3 alert handshake failure



Anyone got any ideas?


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - phsyraxion - 2015-04-13

Is there any way when adding a movie to library that the movie strm files can be placed in their own folder? I cannot download artwork for them as they override the thumbs and poster files


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - insertnamehere - 2015-04-13

(2015-04-13, 02:31)phsyraxion Wrote: Is there any way when adding a movie to library that the movie strm files can be placed in their own folder? I cannot download artwork for them as they override the thumbs and poster files


If you want to put all the Netlfix movie and TV series strm files under one directory separate from other movie files, you can specify a new "Library path (source)" in netflixbmc configuration. Then add this new directory using "add video" to your movie or TV library. That will keep them separate and you can use different posters.

Hold on, are you asking for each strm movie file to be in a separate folder so you can store the thumbs with the strm?


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - corona - 2015-04-13

I've started a process to address the SSL issues, with the first chunk pushed to github now.
If anyone has SSL issues, are running on OSX or Windows, and hows how to get the plugin from github to test, could you please try it :-)

Once this is done it avoids all the certificate validation failure warnings also.

Fixing the SSL problems with Python 2.x is relatively straightforward, new enough requests packages handles it fine one you follow the procedure here:
https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl

The problem is it requires binary python modules, and as far as I can tell Kodi does not support any normal method of dealing with these.
Perhaps I should be looking into fixing kodi's python package management and adding a way to install modules with pip the normal python way....

It also didn't help that pyOpenSSL have recently changed to not be a binary package but to rely on cryptographic package which is binary and requires other binary packages which too a while for me to realise and felt much harder to deal with (cffi I'm looking at you!). For now we're going to be pinned at pyOpenSSL 0.13 which will hopefully be good enough for a while. It's certainly better than having verification turned off altogether!


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - LupinSansei - 2015-04-14

Does anyone have a solution for the mce remote problem? I can map the buttosn in the control utility but they don't do anything when launching something. I have Chrome control enabled.


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - Jeremy White - 2015-04-14

(2015-04-14, 01:32)LupinSansei Wrote: Does anyone have a solution for the mce remote problem? I can map the buttosn in the control utility but they don't do anything when launching something. I have Chrome control enabled.

I don't know what the mce remote problem is, but some remotes just act like a keyboard and need to be mapped to keys that the chrome control can then use.

What are you running kodi on? Windows or linux?


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - Jeremy White - 2015-04-14

(2015-04-13, 23:41)corona Wrote: I've started a process to address the SSL issues, with the first chunk pushed to github now.
If anyone has SSL issues, are running on OSX or Windows, and hows how to get the plugin from github to test, could you please try it :-)

I posted the issues I was having on linux with EOF errors.

Both the issue I was having, and the daredevil issue are now fixed in the pull from github.

Sorry, but I only have linux to test.


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - Snicket - 2015-04-14

I'm using the NetfliXBMC Addon 1.3.18 with Kodi 14.2 on Windows 7 (32 bit) and everytime I get the profile selection it's blank.
I've got an Austrian Netflix account and I already tried to log in with the Chrome browser which worked fine.

I downloaded the Addon from here: http://www.alelec.net/kodi/repository.alelec.zip

Anybody knows how to fix my problem?

My Kodi log looks like this:

11:22:42 T:564 NOTICE: -->Python Interpreter Initialized<--
11:23:43 T:564 NOTICE: URL: https://www.netflix.com/Login
11:23:44 T:564 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:23:45 T:564 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:23:45 T:564 ERROR: Previous line repeats 3 times.
11:23:45 T:564 NOTICE: URL: https://signup.netflix.com/Login
11:23:45 T:564 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:23:46 T:564 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:23:46 T:564 NOTICE: Setting Country: AT
11:23:47 T:564 NOTICE: URL: https://www.netflix.com/WiHome
11:23:47 T:564 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:23:48 T:4328 NOTICE: Thread BackgroundLoader start, auto delete: false
11:24:22 T:1272 NOTICE: Previous line repeats 5 times.
11:24:22 T:1272 NOTICE: Thread LanguageInvoker start, auto delete: false
11:24:22 T:1272 NOTICE: -->Python Interpreter Initialized<--
11:24:23 T:1272 NOTICE: URL: https://www.netflix.com/Login
11:24:23 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:24:23 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:24 T:1272 ERROR: Previous line repeats 2 times.
11:24:24 T:1272 NOTICE: URL: https://signup.netflix.com/Login
11:24:24 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:24:24 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:25 T:1272 NOTICE: Setting Country: AT
11:24:25 T:1272 NOTICE: URL: https://www.netflix.com/ProfilesGate?nextpage=http%3A%2F%2Fwww.netflix.com%2FDefault
11:24:25 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:31 T:4376 ERROR: Previous line repeats 1 times.
11:24:31 T:4376 ERROR: Control 3 in window 12000 has been asked to focus, but it can't
11:24:34 T:1272 NOTICE: URL: https://www.netflix.com/WiHome
11:24:34 T:1272 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:34 T:4376 ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/
11:24:34 T:4376 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/) failed
11:24:34 T:3040 NOTICE: Thread JobWorker start, auto delete: true
11:24:34 T:5668 NOTICE: Thread BackgroundLoader start, auto delete: false
11:24:46 T:5892 NOTICE: Previous line repeats 1 times.
11:24:46 T:5892 NOTICE: Thread LanguageInvoker start, auto delete: false
11:24:47 T:5892 NOTICE: -->Python Interpreter Initialized<--
11:24:47 T:5892 NOTICE: URL: https://www.netflix.com/Login
11:24:48 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:24:48 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:48 T:5892 ERROR: Previous line repeats 2 times.
11:24:48 T:5892 NOTICE: URL: https://signup.netflix.com/Login
11:24:48 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\util\ssl_.py:79: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
11:24:48 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:49 T:5892 NOTICE: Setting Country: AT
11:24:49 T:5892 NOTICE: URL: https://www.netflix.com/ProfilesGate?nextpage=http%3A%2F%2Fwww.netflix.com%2FDefault
11:24:49 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)
11:24:56 T:4376 ERROR: Previous line repeats 1 times.
11:24:56 T:4376 ERROR: Control 3 in window 12000 has been asked to focus, but it can't
11:24:58 T:5892 NOTICE: URL: https://www.netflix.com/WiHome
11:24:58 T:5892 ERROR: C:\Users\David\AppData\Roaming\Kodi\addons\script.module.requests\lib\requests\packages\urllib3\connectionpool.py:769: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.org/en/latest/security.html
InsecureRequestWarning)


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - MorbidNZ - 2015-04-14

Just an update on my earlier windows 7 / 8 SSL issues.

Turns out it wasnt Kodi or Netflixbmc causing it Sad Sorry guys!

Basically ISP had a "global mode" feature to get around geo-blocking. Netlfix worked in the browser fine with this on, but Netflixbmc threw up the SSL errors. Once I disabled the global mode on my ISP account, netflixbmc worked fine without any further changes. Just something to be aware of?

Anyway - thanks for an awesome app.


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - insertnamehere - 2015-04-14

(2015-04-14, 11:45)Snicket Wrote: I'm using the NetfliXBMC Addon 1.3.18 with Kodi 14.2 on Windows 7 (32 bit) and everytime I get the profile selection it's blank.
I've got an Austrian Netflix account and I already tried to log in with the Chrome browser which worked fine.

I downloaded the Addon from here: http://www.alelec.net/kodi/repository.alelec.zip

Anybody knows how to fix my problem?

My Kodi log looks like this:

[lines removed]

11:24:56 T:4376 ERROR: Control 3 in window 12000 has been asked to focus, but it can't

What skin are you using? If not Confluence, can you try it and see if the problem still occurs?


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - jeromemp - 2015-04-14

This add-on is great. For some reason though, two shows won't play, and are empty when added to the library. "Marvel's Daredevil" and "Orange Is The New Black". Here is my debug log.

http://xbmclogs.com/p7nvlwweu

Any help is much appreciated. Thank you


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - JasonPell - 2015-04-15

(2015-04-14, 18:35)jeromemp Wrote: This add-on is great. For some reason though, two shows won't play, and are empty when added to the library. "Marvel's Daredevil" and "Orange Is The New Black". Here is my debug log.

http://xbmclogs.com/p7nvlwweu

Any help is much appreciated. Thank you
There is a known bug with daredevil currently available in the github repo


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - insertnamehere - 2015-04-15

(2015-04-15, 00:03)JasonPell Wrote:
(2015-04-14, 18:35)jeromemp Wrote: This add-on is great. For some reason though, two shows won't play, and are empty when added to the library. "Marvel's Daredevil" and "Orange Is The New Black". Here is my debug log.

http://xbmclogs.com/p7nvlwweu

Any help is much appreciated. Thank you
There is a known bug with daredevil currently available in the github repo

I checked the return from Orange is the new black and it returns exception before json just like Daredevil, so the patch will fix both.


RE: [RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux) - Thread 2 - toasterboy1 - 2015-04-15

Started having the same old problem with the window not maximizing. I had to reinstall Kodibuntu 14.2 after some failed package upgrades. I moved my home folder to my partition with my media, as to not wipe it. After the install I linked to the moved home directory. Everything showed up after a reboot but the Chrome window is not full screen, in Netflixbmc or Chrome launcher. My previous tweak with the Preferences file does not seem to work as the file seems to get over written even with root owner. Also still have the issue with no sound after exiting the plugin and going back in later, does not seem to happen in Chrome launcher.