• 1
  • 66
  • 67
  • 68(current)
  • 69
  • 70
  • 86
[RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux)
(2014-11-15, 23:02)iscribble Wrote:
(2014-11-15, 17:54)dposh Wrote: As of yesterday Nov 14, 2014 everything worked. Now Netflixbmc loads a blank Who's watching and My Lists returns a script error.
Running: Ubuntu 14.04 / Gotham 13.2 / Netflixbmx 1.3.4 / Chrome 38.0.2125.111 .

XBMC Logs: When Trying to open My List
10:20:06 T:140185933264640 NOTICE: -->Python Interpreter Initialized<--
10:20:07 T:140185933264640 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.UnboundLocalError'>
Error Contents: local variable 'match' referenced before assignment
Traceback (most recent call last):
File "/home/dave/.xbmc/addons/plugin.video.netflixbmc/default.py", line 977, in <module>
listVideos(url, type)
File "/home/dave/.xbmc/addons/plugin.video.netflixbmc/default.py", line 164, in listVideos
for videoID in match:
UnboundLocalError: local variable 'match' referenced before assignment
-->End of Python script error report<--
10:20:07 T:140187980466112 ERROR: GetDirectory - Error getting plugin://plugin.video.netflixbmc/?mode=listVideos&thumb&type=movie&url=http%3a%2f%2fwww.netflix.com%2fMyList%3fleid%3d595%26link%3dseeall
10:20:07 T:140187980466112 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/?mode=listVideos&thumb&type=movie&url=http%3a%2f%2fwww.netflix.com%2fMyList%3fleid%3d595%26link%3dseeall) failed

I think it's having trouble logging in - not sure how to fix that, but as a short term solution I deleted the "kids" profile that Netflix automatically created for me. After that, 'My List' started to work again.

I deleted the kids profile and that fixed the issue. Seems like it will only work with one profile.
Reply
(2014-11-16, 12:50)-Dis Wrote: Fix for who's watching.

Replace:
Code:
match = re.compile('"profileName":"(.+?)".+?token":"(.+?)"', re.DOTALL).findall(content)

to this:
Code:
match = re.compile('"firstName":"(.+?)".+?guid":"(.+?)"', re.DOTALL).findall(content)

-Dis
You're right on that fixed my problem with Who's Watching?

However the mylist causes script errors.

It looks like the setting of profile might be reliant on the global api which appears to have been shutdown to developers on Nov 14

def setProfile():
token = addon.getSetting("firtsName")
opener.open("https://www.netflix.com/ProfilesGate?nextpage=http%3A%2F%2Fwww.netflix.com%2FDefault")
opener.open("https://api-global.netflix.com/desktop/account/profiles/switch?switchProfileGuid="+token)
cj.save(cookieFile)
Reply
Fix for profile selection and my list.

Change setProfile to this:
Code:
def setProfile():
    token = addon.getSetting("profile")
    opener.open("http://www.netflix.com/WiHome")
    opener.open("https://api-global.netflix.com/desktop/account/profiles/switch?switchProfileGuid="+token)
    cj.save(cookieFile)

and change chooseProfile to this:

Code:
def chooseProfile():
    content = opener.open("http://www.netflix.com/WiHome").read()
    match = re.compile('"profileName":"(.+?)".+?token":"(.+?)"', re.DOTALL).findall(content)
    profiles = []
    tokens = []
    for p, t in match:
        profiles.append(p)
        tokens.append(t)
    dialog = xbmcgui.Dialog()
    nr = dialog.select(translation(30113), profiles)
    if nr >= 0:
        token = tokens[nr]
        # Profile selection isn't remembered, so it has to be executed before every requests (setProfile)
        # If you know a solution for this, please let me know
        # opener.open("https://api-global.netflix.com/desktop/account/profiles/switch?switchProfileGuid="+token)
        addon.setSetting("profile", token)
        cj.save(cookieFile)

fix for viewing activity:

In def listViewingActivity(type):

change this:
Code:
spl = content.split('<li data-series=')

to this:
Code:
spl = content.split('<li class="retableRow" data-series=')
Reply
(2014-11-16, 19:44)-Dis Wrote: Fix for profile selection and my list.

Change setProfile to this:
Code:
def setProfile():
    token = addon.getSetting("profile")
    opener.open("http://www.netflix.com/WiHome")
    opener.open("https://api-global.netflix.com/desktop/account/profiles/switch?switchProfileGuid="+token)
    cj.save(cookieFile)

and change chooseProfile to this:

Code:
def chooseProfile():
    content = opener.open("http://www.netflix.com/WiHome").read()
    match = re.compile('"profileName":"(.+?)".+?token":"(.+?)"', re.DOTALL).findall(content)
    profiles = []
    tokens = []
    for p, t in match:
        profiles.append(p)
        tokens.append(t)
    dialog = xbmcgui.Dialog()
    nr = dialog.select(translation(30113), profiles)
    if nr >= 0:
        token = tokens[nr]
        # Profile selection isn't remembered, so it has to be executed before every requests (setProfile)
        # If you know a solution for this, please let me know
        # opener.open("https://api-global.netflix.com/desktop/account/profiles/switch?switchProfileGuid="+token)
        addon.setSetting("profile", token)
        cj.save(cookieFile)

fix for viewing activity:

In def listViewingActivity(type):

change this:
Code:
spl = content.split('<li data-series=')

to this:
Code:
spl = content.split('<li class="retableRow" data-series=')

Thanks a lot !!!! That did it.
In def setProfile(): in my post I had put "firstName" in there playing around with the script . But I did need to change the line to opener.open("http://www.netflix.com/WiHome"). The other changes you posted were also needed.
Reply
I'm curious how the shutdown of the public Netflix API might effect NetfliXBMC. Are there any anticipated/current issues because of it?
Reply
Only time will tell that how long NetfliXBMC works because some parts of NetfliXBMC uses netflix api. Like search and movie/series infos.
Current problems are not related to that Netflix closed public api. Netflix just changed something on their site and that caused problems.

ps. sorry for bad english Sad
Reply
-Dis, thank you for those fixes! Profile selection and my list seem to work perfectly now.

One new problem I found is that I get a script error when I try and open a TV series.
Code:
11:58:51 T:6768   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.NameError'>
Error Contents: global name 'country' is not defined
Traceback (most recent call last):
    File "C:\Users\rohbit\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 1003, in <module>
        listSeasons(name, url, thumb)
    File "C:\Users\rohbit\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 362, in listSeasons
        content = getSeriesInfo(seriesID)
    File "C:\Users\rohbit\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 461, in getSeriesInfo
        url = "http://api-global.netflix.com/desktop/odp/episodes?languages="+language+"&forceEpisodes=true&routing=redirect&video="+seriesID+"&country="+country
    NameError: global name 'country' is not defined
    -->End of Python script error report<--
11:58:51 T:2184   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/?mode=listSeasons&name=Futurama&thumb=C%3a%5cUsers%5crohbit%5cAppData%5cRoaming%5cXBMC%5cuserdata%5caddon_data%5cplugin.video.netflixbmc%5ccache%5ccovers%5c70153380.jpg&url=70153380
11:58:51 T:2184   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/?mode=listSeasons&name=Futurama&thumb=C%3a%5cUsers%5crohbit%5cAppData%5cRoaming%5cXBMC%5cuserdata%5caddon_data%5cplugin.video.netflixbmc%5ccache%5ccovers%5c70153380.jpg&url=70153380) failed
11:58:52 T:4012  NOTICE: Thread BackgroundLoader start, auto delete: false

:edit: Ah I see, it looks like it is trying to call the dead public API. Thanks again for your fixes, hopefully this plugin can be brought fully back to life!
Reply
For me it's working but you can try that:

change
Code:
if len(language.split("-"))>1:
    country = language.split("-")[1]
to this:
Code:
country = "fi"
change "fi" to your country code.
Reply
That fixed it, thanks Smile

I wonder why my country wasn't getting set. I did a full "reset netflixbmc" after editing the files for your fixes.
Reply
Did it work before? Maybe you can try to change xbmc language and country settings.
I had same problem once, but after some update of NetfliXBMC it worked.
Reply
Changing language and country settings didn't seem to work, everything was working ok before so this is weird, but just doing the country="us" fixed it so I am happy. Thanks again for your help!
Reply
(2014-11-16, 22:52)jdoo Wrote: Changing language and country settings didn't seem to work, everything was working ok before so this is weird, but just doing the country="us" fixed it so I am happy. Thanks again for your help!

I'm having the same issue as well. I have very little experience with Netflixbmc but have really dug it when it works. For clarification, if I live in the US, do I change

Code:
if len(language.split("-"))>1:
    country = language.split("-")[1]
to
Code:
if len(language.split("-"))>1:
    country = us
or
Code:
country = us

Thanks!
Reply
Error when launching Add-On. Please help

Code:
19:48:48 T:10576  NOTICE: special://profile/ is mapped to: special://masterprofile/
19:48:48 T:10576  NOTICE: -----------------------------------------------------------------------
19:48:48 T:10576  NOTICE: Starting XBMC (13.2 Git:20140817-0f3db05). Platform: x86 Win32 32-bit
19:48:48 T:10576  NOTICE: Using Release XBMC x32 build, compiled Aug 17 2014 by MSVC 160040219 for x86 Win32 32-bit version 0x06000000
19:48:48 T:10576  NOTICE: Running on Windows 8.1 64-bit, build 9600
19:48:48 T:10576  NOTICE: Host CPU: Intel(R) Core(TM) i5-3330 CPU @ 3.00GHz, 4 cores available
19:48:48 T:10576  NOTICE: Desktop Resolution: 1920x1080 32Bit at 60Hz
19:48:48 T:10576  NOTICE: Running with restricted rights
19:48:48 T:10576  NOTICE: Aero is enabled
19:48:48 T:10576  NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\XBMC
19:48:48 T:10576  NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\XBMC
19:48:48 T:10576  NOTICE: special://masterprofile/ is mapped to: C:\Users\Steven\AppData\Roaming\XBMC\userdata
19:48:48 T:10576  NOTICE: special://home/ is mapped to: C:\Users\Steven\AppData\Roaming\XBMC\
19:48:48 T:10576  NOTICE: special://temp/ is mapped to: C:\Users\Steven\AppData\Roaming\XBMC\cache
19:48:48 T:10576  NOTICE: The executable running is: C:\Program Files (x86)\XBMC\XBMC.exe
19:48:48 T:10576  NOTICE: Local hostname: WINDOWS-OCN975P
19:48:48 T:10576  NOTICE: Log File is located: C:\Users\Steven\AppData\Roaming\XBMC\xbmc.log
19:48:48 T:10576  NOTICE: -----------------------------------------------------------------------
19:48:48 T:10576  NOTICE: load settings...
19:48:48 T:10576  NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml)
19:48:48 T:10576  NOTICE: No settings file to load (special://masterprofile/advancedsettings.xml)
19:48:48 T:10576  NOTICE: Default DVD Player: dvdplayer
19:48:48 T:10576  NOTICE: Default Video Player: dvdplayer
19:48:48 T:10576  NOTICE: Default Audio Player: paplayer
19:48:48 T:10576  NOTICE: Disabled debug logging due to GUI setting. Level 0.
19:48:48 T:10576  NOTICE: Log level changed to 0
19:48:48 T:10576  NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml
19:48:48 T:10576  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
19:48:48 T:10576  NOTICE: Loaded playercorefactory configuration
19:48:48 T:10576  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
19:48:48 T:10576  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
19:48:48 T:4468  NOTICE: Thread ActiveAE start, auto delete: false
19:48:48 T:8452  NOTICE: Thread AESink start, auto delete: false
19:48:48 T:4468  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: data format "AE_FMT_AAC" on device "TX-NR828-4 (NVIDIA High Definition Audio)" seems to be not supported.
19:48:48 T:4468  NOTICE: CAESinkWASAPI::EnumerateDevicesEx: sample rate 192khz on device "Speakers (DTS PlayFi Audio Renderer)" seems to be not supported.
19:48:48 T:4468  NOTICE: Found 2 Lists of Devices
19:48:48 T:4468  NOTICE: Enumerated DIRECTSOUND devices:
19:48:48 T:4468  NOTICE:     Device 1
19:48:48 T:4468  NOTICE:         m_deviceName      : {45AF5BAC-F397-4C35-96C8-8640235E4F05}
19:48:48 T:4468  NOTICE:         m_displayName     : HDMI - TX-NR828-4 (NVIDIA High Definition Audio)
19:48:48 T:4468  NOTICE:         m_displayNameExtra: DIRECTSOUND: TX-NR828-4 (NVIDIA High Definition Audio)
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR,FC,BL,BR,SL,SR,LFE
19:48:48 T:4468  NOTICE:         m_sampleRates     : 48000
19:48:48 T:4468  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:48:48 T:4468  NOTICE:     Device 2
19:48:48 T:4468  NOTICE:         m_deviceName      : default
19:48:48 T:4468  NOTICE:         m_displayName     : default
19:48:48 T:4468  NOTICE:         m_displayNameExtra:
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR,FC,BL,BR,SL,SR,LFE
19:48:48 T:4468  NOTICE:         m_sampleRates     : 48000
19:48:48 T:4468  NOTICE:         m_dataFormats     : AE_FMT_FLOAT,AE_FMT_AC3,AE_FMT_DTS
19:48:48 T:4468  NOTICE:     Device 3
19:48:48 T:4468  NOTICE:         m_deviceName      : {D14703EB-BADF-4650-9C47-3DCA6709BC86}
19:48:48 T:4468  NOTICE:         m_displayName     : Speakers - Speakers (DTS PlayFi Audio Renderer)
19:48:48 T:4468  NOTICE:         m_displayNameExtra: DIRECTSOUND: Speakers (DTS PlayFi Audio Renderer)
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR
19:48:48 T:4468  NOTICE:         m_sampleRates     : 44100
19:48:48 T:4468  NOTICE:         m_dataFormats     : AE_FMT_FLOAT
19:48:48 T:4468  NOTICE: Enumerated WASAPI devices:
19:48:48 T:4468  NOTICE:     Device 1
19:48:48 T:4468  NOTICE:         m_deviceName      : {45AF5BAC-F397-4C35-96C8-8640235E4F05}
19:48:48 T:4468  NOTICE:         m_displayName     : HDMI - TX-NR828-4 (NVIDIA High Definition Audio)
19:48:48 T:4468  NOTICE:         m_displayNameExtra: WASAPI: TX-NR828-4 (NVIDIA High Definition Audio)
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR,FC,LFE,BL,BR,SL,SR
19:48:48 T:4468  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:48:48 T:4468  NOTICE:         m_dataFormats     : AE_FMT_DTSHD,AE_FMT_TRUEHD,AE_FMT_EAC3,AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:48:48 T:4468  NOTICE:     Device 2
19:48:48 T:4468  NOTICE:         m_deviceName      : default
19:48:48 T:4468  NOTICE:         m_displayName     : default
19:48:48 T:4468  NOTICE:         m_displayNameExtra:
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_HDMI
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR,FC,LFE,BL,BR,SL,SR
19:48:48 T:4468  NOTICE:         m_sampleRates     : 192000,96000,48000,44100
19:48:48 T:4468  NOTICE:         m_dataFormats     : AE_FMT_DTSHD,AE_FMT_TRUEHD,AE_FMT_EAC3,AE_FMT_DTS,AE_FMT_AC3,AE_FMT_AAC,AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM
19:48:48 T:4468  NOTICE:     Device 3
19:48:48 T:4468  NOTICE:         m_deviceName      : {D14703EB-BADF-4650-9C47-3DCA6709BC86}
19:48:48 T:4468  NOTICE:         m_displayName     : Speakers - Speakers (DTS PlayFi Audio Renderer)
19:48:48 T:4468  NOTICE:         m_displayNameExtra: WASAPI: Speakers (DTS PlayFi Audio Renderer)
19:48:48 T:4468  NOTICE:         m_deviceType      : AE_DEVTYPE_PCM
19:48:48 T:4468  NOTICE:         m_channels        : FL,FR
19:48:48 T:4468  NOTICE:         m_sampleRates     : 192000,44100
19:48:48 T:4468  NOTICE:         m_dataFormats     :
19:48:48 T:10576  NOTICE: Running database version Addons16
19:48:48 T:10576  NOTICE: ADDONS: Using repository repository.addonscriptorde-beta
19:48:48 T:10576  NOTICE: ADDONS: Using repository repository.xbmc.org
19:48:48 T:10576  NOTICE: ADDONS: Using repository repository.pvr-win32.xbmc.org
19:48:48 T:10576  NOTICE: ADDONS: Using repository repository.superrepo.org.gotham.all
19:48:48 T:9156  NOTICE: Thread RemoteControl start, auto delete: false
19:48:48 T:4908  NOTICE: Thread PeripBusCEC start, auto delete: false
19:48:48 T:1464  NOTICE: Thread PeripBusUSB start, auto delete: false
19:48:48 T:10576  NOTICE: Found screen: Dummy Monitor on NVIDIA GeForce GTX 660, adapter 0.
19:48:48 T:10576  NOTICE: Primary mode: 1920x1080@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 640x480@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 640x480@ 72.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 640x480@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 720x480@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 720x480@ 59.94 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 720x576@ 50.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 800x600@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 800x600@ 72.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 800x600@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1024x768@ 70.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1024x768@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1152x864@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1176x664@ 50.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1176x664@ 59.94 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1176x664@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1280x720@ 50.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1280x720@ 59.94 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1280x720@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1280x800@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1280x960@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1280x1024@ 75.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1360x768@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1366x768@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1680x1050@ 59.94 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1768x992@ 25.00i - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1768x992@ 29.97i - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1768x992@ 30.00i - Full Screen
19:48:48 T:10576  NOTICE: Previous line repeats 2 times.
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 59.94 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 25.00i - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 29.97i - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 50.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 30.00i - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 23.98 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 24.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 25.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 29.97 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1920x1080@ 30.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1440x900@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen
19:48:48 T:10576  NOTICE: Checking resolution 16
19:48:49 T:10576  NOTICE: No Joystick name specified, loading default map
19:48:49 T:10576  NOTICE: Previous line repeats 35 times.
19:48:49 T:10576  NOTICE: Running database version Addons16
19:48:49 T:10576  NOTICE: Running database version ViewModes6
19:48:49 T:10576  NOTICE: Running database version Textures13
19:48:49 T:10576  NOTICE: Running database version MyMusic46
19:48:49 T:10576  NOTICE: Running database version MyVideos78
19:48:49 T:10576  NOTICE: Running database version TV22
19:48:49 T:10576  NOTICE: Running database version Epg7
19:48:49 T:10576 WARNING: JSONRPC: Could not parse type "GUI.Property.Value"
19:48:49 T:10576 WARNING: JSONRPC: Could not parse type "Setting.Details.SettingList"
19:48:49 T:10376  NOTICE: Thread LanguageInvoker start, auto delete: false
19:48:49 T:10576  NOTICE: Previous line repeats 1 times.
19:48:49 T:10576  NOTICE: initialize done
19:48:49 T:10016  NOTICE: Thread LanguageInvoker start, auto delete: false
19:48:49 T:10576  NOTICE: Previous line repeats 1 times.
19:48:49 T:10576  NOTICE: Running the application...
19:48:49 T:10376  NOTICE: -->Python Interpreter Initialized<--
19:48:49 T:2148  NOTICE: Thread JobWorker start, auto delete: true
19:48:49 T:10576  NOTICE: Webserver: Starting...
19:48:49 T:10276  NOTICE: -->Python Interpreter Initialized<--
19:48:49 T:10016  NOTICE: -->Python Interpreter Initialized<--
19:48:49 T:10576  NOTICE: WebServer: Started the webserver
19:48:49 T:10576  NOTICE: ES: Starting event server
19:48:49 T:11196  NOTICE: Thread EventServer start, auto delete: false
19:48:49 T:11196  NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777
19:48:49 T:11196  NOTICE: UDP: Listening on port 9777
19:48:49 T:2000  NOTICE: Thread TCPServer start, auto delete: false
19:48:49 T:10580  NOTICE: -->Python Interpreter Initialized<--
19:48:49 T:8620  NOTICE: Thread RSSReader start, auto delete: false
19:48:49 T:10016  NOTICE: 1Channel: Loading sqlite3 as DB engine
19:48:49 T:10580  NOTICE:  StorageServer Module loaded RUN
19:48:49 T:10580  NOTICE: StorageClient-2.5.4 Starting server
19:48:49 T:10016  NOTICE: 1Channel: Loading sqlite3 as DB engine
19:48:49 T:10016  NOTICE: 1Channel: Building PrimeWire Database
19:48:49 T:10016  NOTICE: PrimeWire: Service: Resetting...
19:48:49 T:10016  NOTICE: PrimeWire: Service starting...
19:48:50 T:9436  NOTICE: Thread JobWorker start, auto delete: true
19:48:54 T:10080  NOTICE: Previous line repeats 1 times.
19:48:54 T:10080  NOTICE: Thread BackgroundLoader start, auto delete: false
19:49:17 T:10148  NOTICE: Previous line repeats 11 times.
19:49:17 T:10148  NOTICE: Thread FileCache start, auto delete: false
19:49:18 T:9868  NOTICE: Previous line repeats 7 times.
19:49:18 T:9868  NOTICE: Thread BackgroundLoader start, auto delete: false
19:49:22 T:1640  NOTICE: Previous line repeats 2 times.
19:49:22 T:1640  NOTICE: Thread JobWorker start, auto delete: true
19:49:28 T:6920  NOTICE: Thread FileCache start, auto delete: false
19:49:29 T:5172  NOTICE: Previous line repeats 11 times.
19:49:29 T:5172  NOTICE: Thread BackgroundLoader start, auto delete: false
19:49:50 T:8728  NOTICE: Previous line repeats 1 times.
19:49:50 T:8728  NOTICE: Thread LanguageInvoker start, auto delete: false
19:49:50 T:8728  NOTICE: -->Python Interpreter Initialized<--
19:49:53 T:8728   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <class 'urllib2.URLError'>
                                            Error Contents: <urlopen error [Errno 11001] getaddrinfo failed>
                                            Traceback (most recent call last):
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 1023, in <module>
                                                index()
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 98, in index
                                                if login():
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 649, in login
                                                content = opener.open("https://signup.netflix.com/Login", "authURL="+urllib.quote_plus(authUrl)+"&email="+urllib.quote_plus(username)+"&password="+urllib.quote_plus(password)+"&RememberMe=on").read()
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 404, in open
                                                response = self._open(req, data)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 422, in _open
                                                '_open', req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1222, in https_open
                                                return self.do_open(httplib.HTTPSConnection, req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1184, in do_open
                                                raise URLError(err)
                                            URLError: <urlopen error [Errno 11001] getaddrinfo failed>
                                            -->End of Python script error report<--
19:49:53 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/
19:49:53 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/) failed
19:49:53 T:5844  NOTICE: Thread BackgroundLoader start, auto delete: false
19:50:24 T:8260  NOTICE: Previous line repeats 2 times.
19:50:24 T:8260  NOTICE: Thread LanguageInvoker start, auto delete: false
19:50:24 T:8260  NOTICE: -->Python Interpreter Initialized<--
19:50:25 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/
19:50:25 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/) failed
19:50:25 T:2888  NOTICE: Thread BackgroundLoader start, auto delete: false
19:50:26 T:5012  NOTICE: Thread LanguageInvoker start, auto delete: false
19:50:26 T:5012  NOTICE: -->Python Interpreter Initialized<--
19:50:26 T:8260   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <class 'urllib2.URLError'>
                                            Error Contents: <urlopen error [Errno 11001] getaddrinfo failed>
                                            Traceback (most recent call last):
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 1023, in <module>
                                                index()
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 98, in index
                                                if login():
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 649, in login
                                                content = opener.open("https://signup.netflix.com/Login", "authURL="+urllib.quote_plus(authUrl)+"&email="+urllib.quote_plus(username)+"&password="+urllib.quote_plus(password)+"&RememberMe=on").read()
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 404, in open
                                                response = self._open(req, data)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 422, in _open
                                                '_open', req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1222, in https_open
                                                return self.do_open(httplib.HTTPSConnection, req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1184, in do_open
                                                raise URLError(err)
                                            URLError: <urlopen error [Errno 11001] getaddrinfo failed>
                                            -->End of Python script error report<--
19:50:28 T:10576   ERROR: Previous line repeats 1 times.
19:50:28 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/
19:50:28 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/) failed
19:50:28 T:5260  NOTICE: Thread BackgroundLoader start, auto delete: false
19:52:40 T:7344  NOTICE: Thread JobWorker start, auto delete: true
19:53:16 T:7476  NOTICE: Thread BackgroundLoader start, auto delete: false
19:53:17 T:10656  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:17 T:10656  NOTICE: -->Python Interpreter Initialized<--
19:53:18 T:7248  NOTICE: Thread BackgroundLoader start, auto delete: false
19:53:18 T:10376  NOTICE: Thread JobWorker start, auto delete: true
19:53:23 T:5448  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:23 T:5448  NOTICE: -->Python Interpreter Initialized<--
19:53:39 T:6628  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:39 T:6628  NOTICE: -->Python Interpreter Initialized<--
19:53:39 T:5472  NOTICE: Thread BackgroundLoader start, auto delete: false
19:53:39 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.chrome.launcher/?kiosk&mode=addSite&stopPlayback&url
19:53:39 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.program.chrome.launcher/?kiosk&mode=addSite&stopPlayback&url) failed
19:53:39 T:10832  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:39 T:10832  NOTICE: -->Python Interpreter Initialized<--
19:53:39 T:1264  NOTICE: Thread BackgroundLoader start, auto delete: false
19:53:40 T:9884  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:40 T:9884  NOTICE: -->Python Interpreter Initialized<--
19:53:40 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.chrome.launcher/?kiosk=yes&mode=showSite&stopPlayback=no&url=http%3a%2f%2fwww.netflix.com
19:53:40 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.program.chrome.launcher/?kiosk=yes&mode=showSite&stopPlayback=no&url=http%3a%2f%2fwww.netflix.com) failed
19:53:40 T:1328  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:40 T:1328  NOTICE: -->Python Interpreter Initialized<--
19:53:40 T:9208  NOTICE: Thread BackgroundLoader start, auto delete: false
19:53:50 T:8824  NOTICE: Thread LanguageInvoker start, auto delete: false
19:53:50 T:8824  NOTICE: -->Python Interpreter Initialized<--
19:54:02 T:5132  NOTICE: Thread LanguageInvoker start, auto delete: false
19:54:02 T:5132  NOTICE: -->Python Interpreter Initialized<--
19:54:02 T:9348  NOTICE: Thread BackgroundLoader start, auto delete: false
19:54:02 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.chrome.launcher/?kiosk&mode=addSite&stopPlayback&url
19:54:02 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.program.chrome.launcher/?kiosk&mode=addSite&stopPlayback&url) failed
19:54:02 T:8012  NOTICE: Thread LanguageInvoker start, auto delete: false
19:54:02 T:8012  NOTICE: -->Python Interpreter Initialized<--
19:54:02 T:1212  NOTICE: Thread BackgroundLoader start, auto delete: false
19:54:04 T:3984  NOTICE: Thread LanguageInvoker start, auto delete: false
19:54:04 T:3984  NOTICE: -->Python Interpreter Initialized<--
19:54:04 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.program.chrome.launcher/?kiosk=no&mode=showSite&stopPlayback=no&url=http%3a%2f%2fwww.netflix.com
19:54:04 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.program.chrome.launcher/?kiosk=no&mode=showSite&stopPlayback=no&url=http%3a%2f%2fwww.netflix.com) failed
19:54:04 T:10344  NOTICE: Thread LanguageInvoker start, auto delete: false
19:54:04 T:10344  NOTICE: -->Python Interpreter Initialized<--
19:54:04 T:11120  NOTICE: Thread BackgroundLoader start, auto delete: false
19:54:18 T:10576  NOTICE: Previous line repeats 1 times.
19:54:18 T:10576  NOTICE: Log level changed to 2
19:54:18 T:10576  NOTICE: Enabled debug logging due to GUI setting. Level 2.
19:54:18 T:10576   DEBUG: ------ Window Init () ------
19:54:25 T:10576   DEBUG: CApplication::ProcessMouse: trying mouse action leftclick
19:54:25 T:10576   DEBUG: CGUIWindowManager::PreviousWindow: Deactivate
19:54:25 T:10576   DEBUG: ------ Window Deinit (SettingsCategory.xml) ------
19:54:25 T:10576   DEBUG: CGUIWindowManager::PreviousWindow: Activate new
19:54:25 T:10576   DEBUG: ------ Window Init (Settings.xml) ------
19:54:27 T:10576   DEBUG: CApplication::ProcessMouse: trying mouse action leftclick
19:54:27 T:10576   DEBUG: CGUIWindowManager::PreviousWindow: Deactivate
19:54:27 T:10576   DEBUG: ------ Window Deinit (Settings.xml) ------
19:54:27 T:10576   DEBUG: CGUIWindowManager::PreviousWindow: Activate new
19:54:27 T:10576   DEBUG: ------ Window Init (Home.xml) ------
19:54:28 T:10576   DEBUG: CApplication::ProcessMouse: trying mouse action wheelup
19:54:30 T:10576   DEBUG: Previous line repeats 5 times.
19:54:30 T:10576   DEBUG: CApplication::ProcessMouse: trying mouse action leftclick
19:54:30 T:10576   DEBUG: Activating window ID: 10025
19:54:30 T:10576   DEBUG: ------ Window Deinit (Home.xml) ------
19:54:30 T:10576   DEBUG: ------ Window Init (MyVideoNav.xml) ------
19:54:30 T:10576   DEBUG: CGUIMediaWindow::GetDirectory (addons://sources/video/)
19:54:30 T:10576   DEBUG:   ParentPath = [addons://sources/video/]
19:54:30 T:4012  NOTICE: Thread BackgroundLoader start, auto delete: false
19:54:30 T:4012   DEBUG: Thread BackgroundLoader 4012 terminating
19:54:31 T:10376   DEBUG: SECTION:LoadDLL(special://xbmcbin/system/ImageLib.dll)
19:54:32 T:10576   DEBUG: CApplication::ProcessMouse: trying mouse action leftclick
19:54:32 T:10576   DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.netflixbmc/)
19:54:32 T:10576   DEBUG:   ParentPath = [addons://sources/video/]
19:54:32 T:10376   DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin NetfliXBMC('plugin://plugin.video.netflixbmc/','15','')
19:54:32 T:10376   DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the NetfliXBMC (id=18) plugin...
19:54:32 T:6188  NOTICE: Thread LanguageInvoker start, auto delete: false
19:54:32 T:6188    INFO: initializing python engine.
19:54:32 T:6188   DEBUG: CPythonInvoker(18, C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): start processing
19:54:32 T:6188  NOTICE: -->Python Interpreter Initialized<--
19:54:32 T:6188   DEBUG: CPythonInvoker(18, C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): the source file to load is "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py"
19:54:32 T:6188   DEBUG: CPythonInvoker(18, C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): setting the Python path to C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.pyamf\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.t0mm0.common\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.six\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.html5lib\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.socksipy\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.stem\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.beautifulsoup4\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.myconnpy\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.addon.common\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.free.cable.database\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.coveapi\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.requests\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.pytz\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.urlresolver\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.mechanize\lib;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\Steven\AppData\Roaming\XBMC\addons\script.module.metahandler\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
19:54:32 T:6188   DEBUG: CPythonInvoker(18, C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): entering source directory C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc
19:54:32 T:6188   DEBUG: CPythonInvoker(18, C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): instantiating addon using automatically obtained id of "plugin.video.netflixbmc" dependent on version 2.1.0 of the xbmc.python api
19:54:33 T:10576   DEBUG: ------ Window Init (DialogBusy.xml) ------
19:54:36 T:6188   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <class 'urllib2.URLError'>
                                            Error Contents: <urlopen error [Errno 11001] getaddrinfo failed>
                                            Traceback (most recent call last):
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 1023, in <module>
                                                index()
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 98, in index
                                                if login():
                                              File "C:\Users\Steven\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py", line 649, in login
                                                content = opener.open("https://signup.netflix.com/Login", "authURL="+urllib.quote_plus(authUrl)+"&email="+urllib.quote_plus(username)+"&password="+urllib.quote_plus(password)+"&RememberMe=on").read()
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 410, in open
                                                response = meth(req, response)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 523, in http_response
                                                'http', request, response, code, msg, hdrs)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 442, in error
                                                result = self._call_chain(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 629, in http_error_302
                                                return self.parent.open(new, timeout=req.timeout)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 404, in open
                                                response = self._open(req, data)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 422, in _open
                                                '_open', req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 382, in _call_chain
                                                result = func(*args)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1222, in https_open
                                                return self.do_open(httplib.HTTPSConnection, req)
                                              File "C:\Program Files (x86)\XBMC\system\python\Lib\urllib2.py", line 1184, in do_open
                                                raise URLError(err)
                                            URLError: <urlopen error [Errno 11001] getaddrinfo failed>
                                            -->End of Python script error report<--
19:54:36 T:6188    INFO: Python script stopped
19:54:36 T:6188   DEBUG: Thread LanguageInvoker 6188 terminating
19:54:36 T:10576   DEBUG: ------ Window Init (DialogKaiToast.xml) ------
19:54:36 T:8452    INFO: CActiveAESink::OpenSink - initialize sink
19:54:36 T:8452   DEBUG: CActiveAESink::OpenSink - trying to open device DIRECTSOUND:{45AF5BAC-F397-4C35-96C8-8640235E4F05}
19:54:36 T:8452   DEBUG: CAESinkDirectSound::Initialize: Using Window handle: 919596
19:54:36 T:8452   DEBUG: CAESinkDirectSound::Initialize: secondary buffer created
19:54:36 T:8452   DEBUG: CAESinkDirectSound::Initialize: Initializing DirectSound with the following parameters:
19:54:36 T:8452   DEBUG:   Audio Device    : TX-NR828-4 (NVIDIA High Definition Audio)
19:54:36 T:8452   DEBUG:   Sample Rate     : 44100
19:54:36 T:8452   DEBUG:   Sample Format   : AE_FMT_FLOAT
19:54:36 T:8452   DEBUG:   Bits Per Sample : 32
19:54:36 T:8452   DEBUG:   Valid Bits/Samp : 32
19:54:36 T:8452   DEBUG:   Channel Count   : 2
19:54:36 T:8452   DEBUG:   Block Align     : 8
19:54:36 T:8452   DEBUG:   Avg. Bytes Sec  : 352800
19:54:36 T:8452   DEBUG:   Samples/Block   : 32
19:54:36 T:8452   DEBUG:   Format cBSize   : 22
19:54:36 T:8452   DEBUG:   Channel Layout  : FL,FR
19:54:36 T:8452   DEBUG:   Channel Mask    : 3
19:54:36 T:8452   DEBUG:   Frames          : 661
19:54:36 T:8452   DEBUG:   Frame Samples   : 1322
19:54:36 T:8452   DEBUG:   Frame Size      : 8
19:54:36 T:8452   DEBUG: CActiveAESink::OpenSink - DIRECTSOUND Initialized:
19:54:36 T:8452   DEBUG:   Output Device : HDMI - TX-NR828-4 (NVIDIA High Definition Audio)
19:54:36 T:8452   DEBUG:   Sample Rate   : 44100
19:54:36 T:8452   DEBUG:   Sample Format : AE_FMT_FLOAT
19:54:36 T:8452   DEBUG:   Channel Count : 2
19:54:36 T:8452   DEBUG:   Channel Layout: FL,FR
19:54:36 T:8452   DEBUG:   Frames        : 661
19:54:36 T:8452   DEBUG:   Frame Samples : 1322
19:54:36 T:8452   DEBUG:   Frame Size    : 8
19:54:36 T:10376   DEBUG:  XFILE::CPluginDirectory::WaitOnScriptResult - plugin exited prematurely - terminating
19:54:36 T:10576   ERROR: XFILE::CDirectory::GetDirectory - Error getting plugin://plugin.video.netflixbmc/
19:54:36 T:10576   ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.netflixbmc/) failed
19:54:36 T:10576   DEBUG: CGUIMediaWindow::GetDirectory (addons://sources/video/)
19:54:36 T:10576   DEBUG:   ParentPath = [addons://sources/]
19:54:36 T:6416  NOTICE: Thread BackgroundLoader start, auto delete: false
19:54:36 T:8452   DEBUG: CAESinkDirectSound::CheckPlayStatus: Resuming Playback
19:54:36 T:6416   DEBUG: Thread BackgroundLoader 6416 terminating
19:54:36 T:10576   DEBUG: ------ Window Deinit (DialogBusy.xml) ------
19:54:37 T:7292   DEBUG: CMMNotificationClient::OnPropertyValueChanged: Changed device property of {0.0.0.00000000}.{45af5bac-f397-4c35-96c8-8640235e4f05} is {9855c4cd-df8c-449c-a181-8191b68bd06c}#0
19:54:37 T:10576   DEBUG: ------ Window Deinit (Pointer.xml) ------
19:54:38 T:10576   DEBUG: ------ Window Init (Pointer.xml) ------
19:54:41 T:10576   DEBUG: Keyboard: scancode: 0x5b, sym: 0x0137, unicode: 0x0000, modifier: 0x10
19:54:41 T:10576   DEBUG: CApplication::OnKey: win-leftwindows (0x10f0d6) pressed, action is
19:54:41 T:10576   DEBUG: ------ Window Deinit (Pointer.xml) ------
19:54:41 T:10576   DEBUG: CWinEventsWin32::WndProcWindow is active
19:54:41 T:10576   DEBUG: CWinEventsWin32::WndProc: Focus switched to process C:\Windows\explorer.exe
19:54:41 T:10576   DEBUG: ------ Window Deinit (DialogKaiToast.xml) ------
19:54:46 T:10576   DEBUG: ------ Window Init (Pointer.xml) ------
19:54:51 T:10576   DEBUG: ------ Window Deinit (Pointer.xml) ------
19:55:08 T:7344   DEBUG: Thread JobWorker 7344 terminating (autodelete)
19:55:08 T:10376   DEBUG: Thread JobWorker 10376 terminating (autodelete)
19:55:08 T:10576   DEBUG: SECTION:UnloadDelayed(DLL: special://xbmcbin/system/ImageLib.dll)
Reply
Removing file /var/lib/vdr/.xbmc/userdata/addon_data/plugin.video.netflixbmc/settings.xml
seems to fix issues with country.

You have to locate where that file is in your system.
Reply
Hi, i followed dis members instructions and got the app running at last but my genres is empty in the movies section. searched in the tread but cant find an answer.

14:40:52 T:1200 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.netflixbmc/)
14:40:52 T:1200 DEBUG: ParentPath = [addons://sources/video/]
14:40:52 T:2076 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin NetfliXBMC('plugin://plugin.video.netflixbmc/','1','')
14:40:52 T:2076 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the NetfliXBMC (id=16) plugin...
14:40:52 T:4596 NOTICE: Thread LanguageInvoker start, auto delete: false
14:40:52 T:4596 INFO: initializing python engine.
14:40:52 T:4596 DEBUG: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): start processing
14:40:52 T:4596 NOTICE: -->Python Interpreter Initialized<--
14:40:52 T:4596 DEBUG: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): the source file to load is "C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py"
14:40:52 T:4596 DEBUG: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): setting the Python path to C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.pyamf\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup4\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.grab.fanart\default.py;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.t0mm0.common\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.addon.common\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.unidecode\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.axel.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.urlresolver\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.xbmc.ads\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.metahandler\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
14:40:52 T:4596 DEBUG: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): entering source directory C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc
14:40:52 T:4596 DEBUG: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): instantiating addon using automatically obtained id of "plugin.video.netflixbmc" dependent on version 2.1.0 of the xbmc.python api
14:40:53 T:3568 DEBUG: Version Check: Version installed {u'major': 13, u'tag': u'stable', u'minor': 2, u'revision': u'20140817-0f3db05'}
14:40:53 T:3568 DEBUG: Version Check: Version available {u'major': u'13', u'extrainfo': u'final', u'tagversion': u'', u'tag': u'stable', u'addon_support': u'yes', u'minor': u'2', u'revision': u'20140817-0f3db05'}
14:40:53 T:3568 DEBUG: Version Check: There is no newer stable available
14:40:53 T:3568 INFO: CPythonInvoker(1, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\service.xbmc.versioncheck\service.py): script successfully run
14:40:53 T:3568 INFO: Python script stopped
14:40:53 T:3568 DEBUG: Thread LanguageInvoker 3568 terminating
14:40:53 T:1200 DEBUG: ------ Window Init (DialogBusy.xml) ------
14:40:57 T:4596 DEBUG: LocalizeStrings: no strings.po file exist at C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\resources\language\English, fallback to strings.xml
14:40:57 T:2076 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult- plugin returned successfully
14:40:57 T:4596 INFO: CPythonInvoker(16, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): script successfully run
14:40:57 T:1200 DEBUG: Saving fileitems [plugin://plugin.video.netflixbmc/]
14:40:57 T:1200 DEBUG: -- items: 3, sort method: 0, ascending: false
14:40:57 T:4672 NOTICE: Thread BackgroundLoader start, auto delete: false
14:40:57 T:4672 DEBUG: Thread BackgroundLoader 4672 terminating
14:40:57 T:4596 INFO: Python script stopped
14:40:57 T:4596 DEBUG: Thread LanguageInvoker 4596 terminating
14:40:57 T:1200 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
14:40:58 T:1200 DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
14:40:58 T:1200 DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
14:40:59 T:1200 DEBUG: Keyboard: scancode: 0x1c, sym: 0x000d, unicode: 0x000d, modifier: 0x0
14:40:59 T:1200 DEBUG: CApplication::OnKey: return (0xf00d) pressed, action is Select
14:40:59 T:1200 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.netflixbmc/?mode=main&thumb&type=movie&url)
14:40:59 T:1200 DEBUG: ParentPath = [plugin://plugin.video.netflixbmc/]
14:40:59 T:3172 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin NetfliXBMC('plugin://plugin.video.netflixbmc/','2','?mode=main&thumb&type=movie&url')
14:40:59 T:3172 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the NetfliXBMC (id=17) plugin...
14:40:59 T:5108 NOTICE: Thread LanguageInvoker start, auto delete: false
14:40:59 T:5108 INFO: initializing python engine.
14:40:59 T:5108 DEBUG: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): start processing
14:40:59 T:5108 NOTICE: -->Python Interpreter Initialized<--
14:40:59 T:5108 DEBUG: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): the source file to load is "C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py"
14:40:59 T:5108 DEBUG: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): setting the Python path to C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.pyamf\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup4\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.grab.fanart\default.py;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.t0mm0.common\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.addon.common\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.unidecode\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.axel.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.urlresolver\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.xbmc.ads\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.metahandler\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
14:40:59 T:5108 DEBUG: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): entering source directory C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc
14:40:59 T:5108 DEBUG: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): instantiating addon using automatically obtained id of "plugin.video.netflixbmc" dependent on version 2.1.0 of the xbmc.python api
14:40:59 T:5108 DEBUG: LocalizeStrings: no strings.po file exist at C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\resources\language\English, fallback to strings.xml
14:40:59 T:3172 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult- plugin returned successfully
14:40:59 T:5108 INFO: CPythonInvoker(17, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): script successfully run
14:40:59 T:3120 NOTICE: Thread BackgroundLoader start, auto delete: false
14:40:59 T:3120 DEBUG: Thread BackgroundLoader 3120 terminating
14:40:59 T:5108 INFO: Python script stopped
14:40:59 T:5108 DEBUG: Thread LanguageInvoker 5108 terminating
14:41:00 T:1200 DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
14:41:00 T:1200 DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
14:41:01 T:1200 DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
14:41:01 T:1200 DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
14:41:01 T:1200 DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
14:41:01 T:1200 DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
14:41:01 T:1200 DEBUG: Keyboard: scancode: 0x50, sym: 0x0112, unicode: 0x0000, modifier: 0x0
14:41:01 T:1200 DEBUG: CApplication::OnKey: down (0xf081) pressed, action is Down
14:41:02 T:1200 DEBUG: Keyboard: scancode: 0x1c, sym: 0x000d, unicode: 0x000d, modifier: 0x0
14:41:02 T:1200 DEBUG: CApplication::OnKey: return (0xf00d) pressed, action is Select
14:41:02 T:1200 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.netflixbmc/?mode=listGenres&thumb&type=movie&url=WiGenre)
14:41:02 T:1200 DEBUG: ParentPath = [plugin://plugin.video.netflixbmc/?mode=main&thumb&type=movie&url]
14:41:02 T:1680 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin NetfliXBMC('plugin://plugin.video.netflixbmc/','3','?mode=listGenres&thumb&type=movie&url=WiGenre')
14:41:02 T:1680 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the NetfliXBMC (id=18) plugin...
14:41:02 T:4784 NOTICE: Thread LanguageInvoker start, auto delete: false
14:41:02 T:4784 INFO: initializing python engine.
14:41:02 T:4784 DEBUG: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): start processing
14:41:02 T:4784 NOTICE: -->Python Interpreter Initialized<--
14:41:02 T:4784 DEBUG: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): the source file to load is "C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py"
14:41:02 T:4784 DEBUG: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): setting the Python path to C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.pyamf\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup4\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.grab.fanart\default.py;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.t0mm0.common\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.addon.common\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.unidecode\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.axel.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.urlresolver\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.xbmc.ads\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.metahandler\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
14:41:02 T:4784 DEBUG: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): entering source directory C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc
14:41:02 T:4784 DEBUG: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): instantiating addon using automatically obtained id of "plugin.video.netflixbmc" dependent on version 2.1.0 of the xbmc.python api
14:41:02 T:1200 DEBUG: ------ Window Init (DialogBusy.xml) ------
14:41:04 T:1680 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult- plugin returned successfully
14:41:04 T:4784 INFO: CPythonInvoker(18, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): script successfully run
14:41:04 T:3232 NOTICE: Thread BackgroundLoader start, auto delete: false
14:41:04 T:3232 DEBUG: Thread BackgroundLoader 3232 terminating
14:41:04 T:4784 INFO: Python script stopped
14:41:04 T:4784 DEBUG: Thread LanguageInvoker 4784 terminating
14:41:04 T:1200 DEBUG: ------ Window Deinit (DialogBusy.xml) ------
14:41:07 T:1200 DEBUG: Keyboard: scancode: 0x1c, sym: 0x000d, unicode: 0x000d, modifier: 0x0
14:41:07 T:1200 DEBUG: CApplication::OnKey: return (0xf00d) pressed, action is Select
14:41:07 T:1200 DEBUG: CGUIMediaWindow::GetDirectory (plugin://plugin.video.netflixbmc/?mode=main&thumb&type=movie&url)
14:41:07 T:1200 DEBUG: ParentPath = [plugin://plugin.video.netflixbmc/]
14:41:07 T:1680 DEBUG: XFILE::CPluginDirectory::StartScript - calling plugin NetfliXBMC('plugin://plugin.video.netflixbmc/','4','?mode=main&thumb&type=movie&url')
14:41:07 T:1680 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult - waiting on the NetfliXBMC (id=19) plugin...
14:41:07 T:2772 NOTICE: Thread LanguageInvoker start, auto delete: false
14:41:07 T:2772 INFO: initializing python engine.
14:41:07 T:2772 DEBUG: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): start processing
14:41:07 T:2772 NOTICE: -->Python Interpreter Initialized<--
14:41:07 T:2772 DEBUG: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): the source file to load is "C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py"
14:41:07 T:2772 DEBUG: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): setting the Python path to C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.pyamf\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup4\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.beautifulsoup\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.common.plugin.cache\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.grab.fanart\default.py;C:\Program Files (x86)\XBMC\addons\xbmc.debug\;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests2\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.t0mm0.common\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.chardet\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simplejson\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.addon.common\lib;C:\Program Files (x86)\XBMC\addons\script.module.pil\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.unidecode\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.simple.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.requests\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.axel.downloader\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.urlresolver\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.parsedom\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.elementtree\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.xbmc.ads\lib;C:\Users\mediacentre\AppData\Roaming\XBMC\addons\script.module.metahandler\lib;C:\Program Files (x86)\XBMC\system\python\DLLs;C:\Program Files (x86)\XBMC\system\python\Lib;C:\Program Files (x86)\XBMC\python27.zip;C:\Program Files (x86)\XBMC\system\python\lib\plat-win;C:\Program Files (x86)\XBMC\system\python\lib\lib-tk;C:\Program Files (x86)\XBMC;C:\Program Files (x86)\XBMC\system\python;C:\Program Files (x86)\XBMC\system\python\lib\site-packages
14:41:07 T:2772 DEBUG: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): entering source directory C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc
14:41:07 T:2772 DEBUG: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): instantiating addon using automatically obtained id of "plugin.video.netflixbmc" dependent on version 2.1.0 of the xbmc.python api
14:41:07 T:2772 DEBUG: LocalizeStrings: no strings.po file exist at C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\resources\language\English, fallback to strings.xml
14:41:07 T:1680 DEBUG: XFILE::CPluginDirectory::WaitOnScriptResult- plugin returned successfully
14:41:07 T:2772 INFO: CPythonInvoker(19, C:\Users\mediacentre\AppData\Roaming\XBMC\addons\plugin.video.netflixbmc\default.py): script successfully run
14:41:07 T:196 NOTICE: Thread BackgroundLoader start, auto delete: false
14:41:07 T:196 DEBUG: Thread BackgroundLoader 196 terminating
14:41:07 T:2772 INFO: Python script stopped
Reply
  • 1
  • 66
  • 67
  • 68(current)
  • 69
  • 70
  • 86

Logout Mark Read Team Forum Stats Members Help
[RELEASE] NetfliXBMC - Unofficial Netflix Add-on (Win/OSX/Linux)7