• 1(current)
  • 2
  • 3
  • 4
  • 5
  • 109
[RELEASE] XBMC Flicks - Netflix Movies / TV Shows (Video) experimental Addon for XBMC
#1
Thumbs Up 
Overview:
Your Instant Queue in XBMC's GUI, with search, new listings and add/removing items from the Queue (Instant and Disc Queue is supported).

This is using the Netflix API with version 2.0 calls. It's registered with Netflix as xbmcflicks.

Instant Watch - Watch items Instantly
- includes: Your Queue, search, new items, queue add/remove

Disc Items
- Add items to your Disc queue, modify the queue, change the priority of an item (i.e. move it to the top of your list), search, get the Top 25's by Genre, and more

Rental Details
- See what you have watched, rented, and/or returned

Video Preview: http://youtu.be/_quqCM6jLfs


Before asking questions in this thread, please read the FAQ:
XBMC_Flicks_-_Netflix_for_XBMC



Limitations:
Windows and OSX - All Features will work
Linux - No Playback Support, you could use it to add/remove/search for items, but playback will not work
- Linux Playback is not supported and will not be unless Microsoft makes Silverlight for Linux, or Netflix uses something else (There's some chatter about HTML5). There are no workarounds at this time.

XBMC Version Support:
- Dharma XBMC 10.0
- Eden support is work in progress!

How does this work?
It's using Netflix API calls to work with your queue, add/remove etc.
It's displaying that data in XBMC
The actual playback, is using IE and Silverlight, DRM is intact.

Will this work for netflix.ca
- Most items work now, search seems abit odd (that's on Netflix side of the house)

Does this work on the apple tv
- It should as long as you have a browser working on the apple tv and can view your movies on the netflix site
-- we are still sorting out some of the commands needed in the playercorefactory.xml to launch the browser

Is this registered with Netflix?
- Yes, it's registered under the name xbmcflicks

Requirements:
If you need to create/modify the playercore file and advanced settings, use this as the reference of what is needed in those files.

The current version of the addon will create the file if you don't already have on in place.

playercorefactory.xml - Note change the path to IE if your running 64bit
Code:
<playercorefactory>
  <players>
    <player name="IE" type="ExternalPlayer">
     <filename>c:\Program Files\Internet Explorer\iexplore.exe</filename>
     <args>-k "{1}"</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
    </player>
  </players>

  <rules action="prepend">
    <rule name="html" filetypes="html" player="IE" />
  </rules>
</playercorefactory>

advancedsettings.xml
Code:
<advancedsettings>
  <videoextensions>
    <add>.html</add>
  </videoextensions>
</advancedsettings>


Where do i get it?
- Dharma:The addon is in the official XBMC repo, you can install it from within XBMC. The addon will attempt to create the required playercorefactory and advancedsettings files for it to work, if you already have these files, you will need to manually add the information to them.
- Eden [WIP]: https://github.com/spudsdude/XBMC-Flicks/zipball/master

OSX Users: Important note
Notes: if using OSX, pick it in the addon settings, that changes how it handles the initial browser open so that auth will work

What keys do what --
Key's that function when it's playing
space OR enter = pause/play
ctrl+alt+shift+left arrow OR just F = full screen
esc = exit full screen
ctrl+spacebar = put it's into frame mode to allow ffwd and rwd using arrow keys
shift + left arrow = rwd
shift + right arrow = ffwd
ctrl+alt+shift+m = menu
alt+f4 = shutdown web page (forcefully)

What remote do I use?
I use the cheap one from amazon, $8 us, works pretty good for the cost
http://www.amazon.com/Wireless-USB-Remot...B001M56DI0

Using it with Event Ghost --
Fade23 currently uses EventGhost and an AutoHotkey script (http://forums.sagetv.com/forums/showthread.php?t=38969) to accomplish this.
You will want to choose the option to use alt player, it's under the addon settings, Misc tab.

Using it with the IE Wrapper.
For the Windows Users out there:

Here's a wrapper around IE, it has an X at the top right to allow the window to be closed, you can also just press F10 to exit it.

https://downloads.sourceforge.net/projec...ror=master

save it where ya like, and update the playercorefactory.xml to point to that file.
the <args> need to be updated as well.

I put mine into my plugin folder and use the following playercorefactory.xml
Code:
<playercorefactory>
  <players>
    <player name="IE" type="ExternalPlayer">
     <filename>C:\Program Files (x86)\XBMC\portable_data\addons\plugin.video.xbmcflicks\resources\lib\iewrap.exe</filename>
     <args> "{1}"</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
    </player>
  </players>

  <rules action="prepend">
    <rule name="html" filetypes="html" player="IE" />
  </rules>
</playercorefactory>
Enjoy!
Fekker - TeamUMX

Main Screen:
Image

Settings:
Image
Image

Instant Queue (Movies):
Image

Search Results (Set to auto expand episodes):
Image
Reply
#2
Meta Data:
Image

Release Details:
Dharma: 1.0.18 - available in the xbmc addons repo
Eden [WIP]: https://github.com/spudsdude/XBMC-Flicks/zipball/master

Here's the where files go info:

Windows 32 bit
advancedsettings.xml
Code:
<advancedsettings>
<useddsfanart>true</useddsfanart>
  <videoextensions>
    <add>.html</add>
  </videoextensions>
</advancedsettings>

playercorefactory.xml
Code:
<playercorefactory>
  <players>
    <player name="IE" type="ExternalPlayer">
     <filename>c:\Program Files\Internet Explorer\iexplore.exe</filename>
     <args>-k "{1}"</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
    </player>
  </players>

  <rules action="prepend">
    <rule name="html" filetypes="html" player="IE" />
  </rules>
</playercorefactory>

Regular Mode
if your not using portable mode, the files go here
%appdata%\xbmc\userdata

Portable Mode
For xbmc portable mode (-p option for xbmc)
C:\Program Files\XBMC\portable_data\userdata

Windows 64 bit
advancedsettings.xml
Code:
<advancedsettings>
<useddsfanart>true</useddsfanart>
  <videoextensions>
    <add>.html</add>
  </videoextensions>
</advancedsettings>

playercorefactory.xml
Code:
<playercorefactory>
  <players>
    <player name="IE" type="ExternalPlayer">
     <filename>c:\Program Files (x86)\Internet Explorer\iexplore.exe</filename>
     <args>-k "{1}"</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
    </player>
  </players>

  <rules action="prepend">
    <rule name="html" filetypes="html" player="IE" />
  </rules>
</playercorefactory>

Regular Mode
if your not using portable mode, the files go here
%appdata%\xbmc\userdata

Portable Mode
For xbmc portable mode (-p option for xbmc)
C:\Program Files (x86)\XBMC\portable_data\userdata

OSX
advancedsettings.xml
Code:
<advancedsettings>
<useddsfanart>true</useddsfanart>
  <videoextensions>
    <add>.html</add>
  </videoextensions>
</advancedsettings>

playercorefactory.xml
Code:
<playercorefactory>
  <players>
    <player name="IE" type="ExternalPlayer">
     <filename>/usr/bin/open</filename>
     <args>"{1}"</args>
     <hidexbmc>false</hidexbmc>
     <hideconsole>false</hideconsole>
     <warpcursor>none</warpcursor>
    </player>
  </players>

  <rules action="prepend">
    <rule name="htm" filetypes="htm" player="IE" />
  </rules>
</playercorefactory>

UserData folder can be found at /Users/<your_user_name>/Library/Application Support/XBMC/userdata
On the Apple TV it can be found /Users/frontrow/Library/Application Support/XBMC/userdata

if your having problems, i need the full xbmc log file, the start will show if it's loading the files or not, so please paste the whole log
Reply
#3
Details on some aspects that are not directly visable:

Rating:
The Netflix movies/shows are rated using a value system, the add-on setting allows you to pick the max rating it will show
Here's how it breaks down
10 = "TV-Y"
20 = "TV-Y7"
40 = "G"
50 = "TV-G"
60 = "PG"
75 = "Not Rated (Kids)"
80 = "PG-13"
90 = "TV-14"
100 = "R"
110 = "TV-MA"
130 = "Not Rated (Mature)"
1000 = "Unrated (Mature)"

So if, for example, you pick "PG" in the settings, which is 60, you'll see everything PG and under


FAQ
Code:
You'll need to know where your userdata folder is, check this post
http://wiki.xbmc.org/index.php?title=Userdata

here's the short version for Windows users
The userdata folder is %APPDATA%\xbmc\userdata, where %APPDATA% is an environment variable that varies depending on what version of Windows you use. For example on my PC runnings Windows 7 my %APPDATA% is C:\Users\renniej\AppData\Roaming.

That's also where the xbmc.log file is located
Code:
1. Get nexflix working on your machine natively - this will ensure that you already have siverlight and anything else netflix might want to get working.

2. Turn on Plugin Debugging
   Go to Videos / Add-Ons
   Right Click XBMC Flicks
   Select Add-On Settings
   Under Debugging, turn on Both options
   Back out to the Add-Ons menu

3. Start XBMC Flicks

At this point your bowser should kick off asking you the account to authorise for netflix usage - do so.  If that doenst kick off, you can pull the url from the xbmc.log file in a line that looks like "Authorize user access here: https://api-user.netflix.com/..."
    

4. Get your 'key' and 'secret' values from the XBMC.LOG file
   Open the debug log - %appdata%\XBMC\xbmc.log
   Find the lines near the bottom mentioning the 'key' and 'secret' - you will need those values

5. Put your 'key' and 'secret' values into the iqueue.py file
   Open %appdata%\XBMC\addons\plugin.video.xbmcflicks\resources\lib\iqueue.py
      Note, windows notepad is not a good util for this, best getting something like Programmers File Editor (freeware)
   Find the section of the file called MY_USER = {
   Put in the key and secret (from the xbmc.log) between the ' ' for those values both by 'request' and 'access'

Notes:
A. IF you dont know what your %appdata% dir is, from a command prompt, simply type 'set appdata'
B. If your time is off, it won't work, so make sure your computers time is in sync with an NTP server
C. Try with a local administrator account if possible

Useful Commands: (once you have it working)
Pause / Plat       - space OR enter
Full Screen        - F
Exit Full Screen   - ESC
Frame Mode         - ctrl+spacebar (allows ffwd and rwd using arrow keys)
Rewind             - shift + left arrow
Fast Forward       - shift + right arrow
Menu               - ctrl+alt+shift+m
Force Web Shutdown - alt+f4
Reply
#4
Is it safe to link our account to this? What exactly does that do?
Image
To learn more, click here.
Reply
#5
Congratulations for this amazing NETFLIX plugin!!!
Reply
#6
eskro Wrote:Congratulations for this amazing NETFLIX plugin!!!
Thanks Big Grin

igotdvds Wrote:Is it safe to link our account to this? What exactly does that do?

Yes it's safe. It's functionality comes from the same calls that are used on other Netflix ready devices.

It uses Netflix API to get information and display your queues, allow queue changes, etc.

It's not a hack of Netflix API, it's using there API calls and is registered with Netflix as a 3rd party app.
Reply
#7
fekker Wrote:Thanks Big Grin



Yes it's safe. It's functionality comes from the same calls that are used on other Netflix ready devices.

It uses Netflix API to get information and display your queues, allow queue changes, etc.

It's not a hack of Netflix API, it's using there API calls and is registered with Netflix as a 3rd party app.

I created the two files but where do I put them?
Image
To learn more, click here.
Reply
#8
igotdvds Wrote:I created the two files but where do I put them?

If using portable mode, they are in the install folder, my install folder is XBMCdrc2, so those files go into
- C:\Program Files (x86)\XBMCdrc2\portable_data\userdata

If not using portable mode
The "advancedsettings.xml" file, which does not exist by default, may be created by a user in their "\UserData\" folder.
Please consult your plaform specific FAQ for the appropriate location.
http://wiki.xbmc.org/index.php?title=Adv...ttings.xml

For windows, from the link above
Quote:Where is user specific data stored?

All user-specific data is stored in in the XBMC home directory which, for a standard installation, is found in your windows users' application data directory, which may be found in one of two places.

1. Windows Xp: Documents and Settings\[user]\Application Data\XBMC\
2. Vista/Windows 7: Users\[user]\AppData\Roaming\XBMC\

The UserData Folder, where your settings, thumbs and library files are stored is located in the UserData folder within this directory. Similarly, skins, plugins and scripts should be installed by the user into this directory.

XBMC will not alter this directory on an upgrade, so your data will remain safe between upgrades of XBMC.
Reply
#9
I get "Playback failed"

Error log:
Code:
20:05:09 T:18252 M:1496887296  NOTICE: DVDPlayer: finished waiting
20:05:12 T:18252 M:1496956928  NOTICE: DVDPlayer: Opening: C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\1181532.html
20:05:12 T:18252 M:1496956928 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:12 T:5864 M:1496956928  NOTICE: Creating InputStream
20:05:12 T:5864 M:1496956928  NOTICE: Creating Demuxer
20:05:12 T:5864 M:1496952832   ERROR: CDVDDemuxFFmpeg::Open - error probing input format, C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\1181532.html
20:05:12 T:5864 M:1496952832   ERROR: CDVDPlayer::OpenDemuxStream - Error creating demuxer
20:05:12 T:5864 M:1496952832  NOTICE: CDVDPlayer::OnExit()
20:05:12 T:5864 M:1496952832  NOTICE: CDVDPlayer::OnExit() deleting input stream
20:05:12 T:18252 M:1496952832   ERROR: Playlist Player: skipping unplayable item: 0, path [C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\1181532.html]
20:05:12 T:18252 M:1496952832  NOTICE: CDVDPlayer::CloseFile()
20:05:12 T:18252 M:1496952832 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:12 T:18252 M:1496952832  NOTICE: DVDPlayer: waiting for threads to exit
20:05:12 T:18252 M:1496952832  NOTICE: DVDPlayer: finished waiting
20:05:17 T:18252 M:1498411008  NOTICE: DVDPlayer: Opening: C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\492003.html
20:05:17 T:18252 M:1498411008 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:17 T:12168 M:1498411008  NOTICE: Creating InputStream
20:05:17 T:12168 M:1498411008  NOTICE: Creating Demuxer
20:05:17 T:12168 M:1498406912   ERROR: CDVDDemuxFFmpeg::Open - error probing input format, C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\492003.html
20:05:17 T:12168 M:1498406912   ERROR: CDVDPlayer::OpenDemuxStream - Error creating demuxer
20:05:17 T:12168 M:1498406912  NOTICE: CDVDPlayer::OnExit()
20:05:17 T:12168 M:1498406912  NOTICE: CDVDPlayer::OnExit() deleting input stream
20:05:17 T:18252 M:1498406912   ERROR: Playlist Player: skipping unplayable item: 0, path [C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\492003.html]
20:05:17 T:18252 M:1498390528  NOTICE: CDVDPlayer::CloseFile()
20:05:17 T:18252 M:1498390528 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:17 T:18252 M:1498390528  NOTICE: DVDPlayer: waiting for threads to exit
20:05:17 T:18252 M:1498390528  NOTICE: DVDPlayer: finished waiting
20:05:19 T:18252 M:1499136000  NOTICE: DVDPlayer: Opening: C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\684847.html
20:05:19 T:18252 M:1499136000 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:19 T:15748 M:1499136000  NOTICE: Creating InputStream
20:05:19 T:15748 M:1499136000  NOTICE: Creating Demuxer
20:05:19 T:15748 M:1499131904   ERROR: CDVDDemuxFFmpeg::Open - error probing input format, C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\684847.html
20:05:19 T:15748 M:1499131904   ERROR: CDVDPlayer::OpenDemuxStream - Error creating demuxer
20:05:19 T:15748 M:1499131904  NOTICE: CDVDPlayer::OnExit()
20:05:19 T:15748 M:1499131904  NOTICE: CDVDPlayer::OnExit() deleting input stream
20:05:19 T:18252 M:1499131904   ERROR: Playlist Player: skipping unplayable item: 0, path [C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\684847.html]
20:05:19 T:18252 M:1499131904  NOTICE: CDVDPlayer::CloseFile()
20:05:19 T:18252 M:1499131904 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:19 T:18252 M:1499131904  NOTICE: DVDPlayer: waiting for threads to exit
20:05:19 T:18252 M:1499131904  NOTICE: DVDPlayer: finished waiting
20:05:21 T:18252 M:1499222016  NOTICE: DVDPlayer: Opening: C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\541027.html
20:05:21 T:18252 M:1499222016 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:21 T:6568 M:1499222016  NOTICE: Creating InputStream
20:05:21 T:6568 M:1499222016  NOTICE: Creating Demuxer
20:05:21 T:6568 M:1499217920   ERROR: CDVDDemuxFFmpeg::Open - error probing input format, C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\541027.html
20:05:21 T:6568 M:1499217920   ERROR: CDVDPlayer::OpenDemuxStream - Error creating demuxer
20:05:21 T:6568 M:1499217920  NOTICE: CDVDPlayer::OnExit()
20:05:21 T:6568 M:1499217920  NOTICE: CDVDPlayer::OnExit() deleting input stream
20:05:21 T:18252 M:1499217920   ERROR: Playlist Player: skipping unplayable item: 0, path [C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\541027.html]
20:05:21 T:18252 M:1499287552  NOTICE: CDVDPlayer::CloseFile()
20:05:21 T:18252 M:1499287552 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:21 T:18252 M:1499287552  NOTICE: DVDPlayer: waiting for threads to exit
20:05:21 T:18252 M:1499287552  NOTICE: DVDPlayer: finished waiting
Image
To learn more, click here.
Reply
#10
igotdvds Wrote:I get "Playback failed"

Error log:
Code:
20:05:09 T:18252 M:1496887296  NOTICE: DVDPlayer: finished waiting
20:05:12 T:18252 M:1496956928  NOTICE: DVDPlayer: Opening: C:\Users\Wiz\AppData\Roaming\XBMC\addons\plugin.video.xbmcflicks\resources\links\1181532.html
20:05:12 T:18252 M:1496956928 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
20:05:12 T:5864 M:1496956928  NOTICE: Creating InputStream
20:05:12 T:5864 M:1496956928  NOTICE: Creating Demuxer
20:05:12 T:5864 M:1496952832   ERROR: CDVDDemuxFFmpeg::Open - error probing input format, C:\U....

It's not picking up your playercorefactory settings change that tells it to use iexplorer
Browsing, queue changes and metadata are done in xbmc, actual item playback links out to IE (or firefox if configured to do so) using the external player option as it's using silverlight under your browser to playback the file.

Like opening a browser window to view the netflix page as shown in the wiki thread
http://wiki.xbmc.org/index.php?title=Usi...nal_player
(note I'm using .html and not .htm for the files it's linking to)
Reply
#11
fekker Wrote:It's not picking up your playercorefactory settings change that tells it to use iexplorer
Browsing, queue changes and metadata are done in xbmc, actual item playback links out to IE (or firefox if configured to do so) using the external player option as it's using silverlight under your browser to playback the file.

Like opening a browser window to view the netflix page as shown in the wiki thread
http://wiki.xbmc.org/index.php?title=Usi...nal_player
(note I'm using .html and not .htm for the files it's linking to)

Got it.

Great work! Thanks!
Image
To learn more, click here.
Reply
#12
Code:
12:36:11 T:3216 M:184860672  NOTICE: DEBUG = getUserSettingDebug(arg)
12:36:11 T:3216 M:184860672  NOTICE:   File "C:\Users\Robert Russell\AppData\Roaming\XBMC\plugins\video\plugin.video.xbmcflicks\resources\lib\settings.py", line 32, in getUserSettingDebug
12:36:11 T:3216 M:184856576  NOTICE: deb = xbmcplugin.getSetting(arg,'debug')
12:36:11 T:3216 M:184856576  NOTICE: TypeError
12:36:11 T:3216 M:184856576  NOTICE: :
12:36:11 T:3216 M:184856576  NOTICE: function takes exactly 1 argument (2 given)
12:36:11 T:3216 M:184856576   ERROR: Scriptresult: Error
12:36:12 T:3692 M:186347520   ERROR: DIRECTORY::CDirectory::GetDirectory - Error getting plugin://video/plugin.video.xbmcflicks/?mode=40
12:36:12 T:3692 M:186347520   ERROR: CGUIMediaWindow::GetDirectory(plugin://video/plugin.video.xbmcflicks/?mode=40) failed
12:36:12 T:4240 M:184565760  NOTICE: -->Python Interpreter Initialized<--
12:36:12 T:4240 M:180764672  NOTICE: ##########################################################
12:36:12 T:4240 M:180764672  NOTICE: Mode: 0
12:36:12 T:4240 M:180764672  NOTICE: Arg1: 0
12:36:12 T:4240 M:180764672  NOTICE: Arg2:
12:36:12 T:4240 M:180764672  NOTICE: ##########################################################
12:36:12 T:3692 M:180748288 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 0
12:36:14 T:3692 M:182505472 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 6
12:36:29 T:3692 M:167350272 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 6
12:36:30 T:1388 M:161202176  NOTICE: -->Python Interpreter Initialized<--
12:36:31 T:1388 M:150163456  NOTICE: ##########################################################
12:36:31 T:1388 M:150159360  NOTICE: Mode: 0
12:36:31 T:1388 M:150159360  NOTICE: Arg1: 0
12:36:31 T:1388 M:150159360  NOTICE: Arg2:
12:36:31 T:1388 M:150159360  NOTICE: ##########################################################
12:36:31 T:3692 M:149958656 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 0

I get an error when i try to do anything.

And I the settings window shows up blank with just a few buttons on the bottom.

And I don't see a way to log into netflix anywhere.
Reply
#13
pcvii Wrote:
Code:
12:36:11 T:3216 M:184860672  NOTICE: DEBUG = getUserSettingDebug(arg)
12:36:11 T:3216 M:184860672  NOTICE:   File "C:\Users\Robert Russell\AppData\Roaming\XBMC\plugins\video\plugin.video.xbmcflicks\resources\lib\settings.py", line 32, in getUserSettingDebug
12:36:11 T:3216 M:184856576  NOTICE: deb = xbmcplugin.getSetting(arg,'debug')
12:36:11 T:3216 M:184856576  NOTICE: TypeError
12:36:11 T:3216 M:184856576  NOTICE: :
12:36:11 T:3216 M:184856576  NOTICE: function takes exactly 1 argument (2 given)
12:36:11 T:3216 M:184856576   ERROR: Scriptresult: Error
12:36:12 T:3692 M:186347520   ERROR: DIRECTORY::CDirectory::GetDirectory - Error getting plugin://video/plugin.video.xbmcflicks/?mode=40
12:36:12 T:3692 M:186347520   ERROR: CGUIMediaWindow::GetDirectory(plugin://video/plugin.video.xbmcflicks/?mode=40) failed
12:36:12 T:4240 M:184565760  NOTICE: -->Python Interpreter Initialized<--
12:36:12 T:4240 M:180764672  NOTICE: ##########################################################
12:36:12 T:4240 M:180764672  NOTICE: Mode: 0
12:36:12 T:4240 M:180764672  NOTICE: Arg1: 0
12:36:12 T:4240 M:180764672  NOTICE: Arg2:
12:36:12 T:4240 M:180764672  NOTICE: ##########################################################
12:36:12 T:3692 M:180748288 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 0
12:36:14 T:3692 M:182505472 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 6
12:36:29 T:3692 M:167350272 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 6
12:36:30 T:1388 M:161202176  NOTICE: -->Python Interpreter Initialized<--
12:36:31 T:1388 M:150163456  NOTICE: ##########################################################
12:36:31 T:1388 M:150159360  NOTICE: Mode: 0
12:36:31 T:1388 M:150159360  NOTICE: Arg1: 0
12:36:31 T:1388 M:150159360  NOTICE: Arg2:
12:36:31 T:1388 M:150159360  NOTICE: ##########################################################
12:36:31 T:3692 M:149958656 WARNING: DIRECTORY::CVideoDatabaseDirectory::GetLabel - Unknown nodetype requested 0

I get an error when i try to do anything.

And I the settings window shows up blank with just a few buttons on the bottom.

And I don't see a way to log into netflix anywhere.
what version of xbmc are you using?
Reply
#14
That was it. I realized I wasn't using the newest version of XBMC. figured that out when a website said there was an addon manager. And I'm like where?

Playing with it now.
Reply
#15
Okay current issue is ie keeps saying I need to install silverlight. and i have silverlight.

It plays in IE when I don't launch from xbmc. I gotta make sure xbmc isnt launching the 64bit. because silverlight doesn't work with 64bit ie.

yep gotta change it to C:\Program Files (x86)\Internet Explorer\iexplore.exe

C:\Program Files\Internet Explorer\iexplore.exe is 64 bit in Windows 7
Reply
  • 1(current)
  • 2
  • 3
  • 4
  • 5
  • 109

Logout Mark Read Team Forum Stats Members Help
[RELEASE] XBMC Flicks - Netflix Movies / TV Shows (Video) experimental Addon for XBMC16