Closed Jesia closed 10 years ago
I can confirm this issue. This also happens to me.
I've been really busy as of late. When I get some time, I'll try to take a look at it.
---Alex
I get the same when trying to watch nfl network, it works for a while and then drops after a few minutes
I got this in just before when running xbmc in debug mode
19:58:01 T:2785014864 DEBUG: ffmpeg[A5FFF450]: [http] HTTP error 403 Forbidden 19:58:01 T:2785014864 ERROR: ffmpeg[A5FFF450]: Unable to open key file http://nlsk.neulion.com/nlsk/hls/securekey?id=21&url=/nlds/nfl/nfltv/as/live/nfltv_hd_800/20140507195500.m3u8.key 19:58:44 T:2785014864 ERROR: ffmpeg[A5FFF450]: [crypto] Unable to open input
I am using openlec on the raspberry pi with gotham
I was hoping to use this to watch the draft
Perhaps @maxgalbu is able to help us out? They have obviously changed something with the encryption, and seeing as NBA League Pass works in a similar way he might know what's wrong!
Installed your addon and I enjoy it very much, however I am facing the same problem (only on NFL-Network, all streams of the old games work properly)
I found the same error in my logs:
20:35:42 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [NULL] Current profile doesn't provide more RBSP data in PPS, skipping 20:35:53 T:2779567168 DEBUG: Previous line repeats 3 times. 20:35:53 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [mpegts] PES packet size mismatch 20:35:53 T:2779567168 DEBUG: Previous line repeats 1 times. 20:35:53 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [NULL] Current profile doesn't provide more RBSP data in PPS, skipping 20:35:53 T:2779567168 DEBUG: COMXPlayer::CheckContinuity - resync forward :2, prev:334550188.888898, curr:336051688.888897, diff:1468133.333332 20:35:57 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [NULL] Current profile doesn't provide more RBSP data in PPS, skipping 20:36:01 T:2842686528 ERROR: ffmpeg[A96FF440]: [aac] Number of bands (17) exceeds limit (12). 20:36:01 T:2842686528 DEBUG: ffmpeg[A96FF440]: [aac] Sample rate index in program config element does not match the sample rate index configured by the container. 20:36:01 T:2842686528 ERROR: ffmpeg[A96FF440]: [aac] decode_pce: Input buffer exhausted before END element found 20:36:01 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [NULL] Current profile doesn't provide more RBSP data in PPS, skipping 20:36:03 T:2779567168 DEBUG: ffmpeg[A5ACD440]: [http] HTTP error 403 Forbidden 20:36:03 T:2779567168 ERROR: ffmpeg[A5ACD440]: Unable to open key file http://nlsk.neulion.com/nlsk/hls/securekey?id=195&url=/nlds/nfl/nfltv/as/live/nfltv_hd_4500/20140508183500.m3u8.key 20:36:23 T:2779567168 DEBUG: Pause -5.52,-5.51 (A:10 V:10) EOF:0 FULL:0 T:0.80 20:36:23 T:2779567168 DEBUG: OMXClock::OMXSetSpeed(0.00) pause_resume:1 20:36:24 T:2842686528 DEBUG: COMXPlayerAudio - CDVDMsg::GENERAL_EOF 20:36:24 T:2756703296 DEBUG: COMXPlayerVideo - CDVDMsg::GENERAL_EOF 20:36:24 T:2756703296 INFO: COMXVideo::SubmitEOS 20:36:24 T:2842686528 INFO: COMXAudio::SubmitEOS 20:36:24 T:2779567168 DEBUG: Resume -5.52,-5.51 (A:10 V:10) EOF:1 FULL:0 T:0.80
Seems like something has changed with the m3u8.key files!
Anyway thanks for your work and time you are spending!
Regards from Austria!!
/Edit: I'm using XBMC 13.0 (stable) on my Raspberry Pi (raspbmc), do I need to update on a nightly build??
Hey,
Thanks everyone for the logs.
I have a lot of "real life" going on at the moment, and have a conference coming up that I need to prepare for over the next week.
So, the short story is that there's no way I'm going to be able to debug and fix these issues before the draft is over. :-/
However, I /am/ interested in getting this fixed up again in time for pre-season. I image there'll be quite a few bugs discovered during pre-season, but I want to get the streams functional in time for that.
I am always, of course, happy to accept patches, so if anyone feels like jumping in on this, I can make the time to provide some feedback and test/merge patches.
Thanks for being patient. :-)
---Alex
Hi Alex, i fully understand the "real life problems" ;-)
I am on vacation this weekend but I will try to analyze and debug the issue on monday. Since I am new to XBMC addon development this will maybe take some time. I don't really know where to start, but maybe I can help.
As soon as I find something helpfull, I will let you know.
Raffael
Hi Alex,
Any pointers as to how to fix/debug this issue. I mean is there any document on which urls gamepass uses or how did you find out originally? e.g. did you capture communications from an android device?
regards
Hey necrosus,
It's been awhile since I worked on this, but the vast majority of information and URLs were extracted simply by using Firebug in Firefox while using the Flash Web UI. The "HTTP Resource Test" addon was also useful for manipulating POST parameters, which are used heavily by GamePass.
I havn't looked at the logs closely, but I'd guess that this is a heartbeat or keep-alive issue. We noticed awhile back that there is a heartbeat sent, but we never implemented it since nothing seemed to need it. That /may/ be what has changed and should be reasonably easy to fix.
it also could be a lot of other things. Perhaps they're doing something silly with the streams, and may be providing a m3u8 playlist with limited duration streams and needs to be reacquired or something. In which case, we'd be pretty screwed trying to get seamless playback.
I did receive one or two dumps of traffic from mobile devices when I was initially working on this. IMO, I think it's harder to get information from those devices, but the GamePass App seems to be (or at least was) more sane than the web UI, which is really just a massive, creaking beast.
Another thing, the Web UI does stream load balancing across two servers. Currently (or at least 6 months ago) the version of ffmpeg shipped with XBMC 13-dev did not support that, so we only use one stream ATM. I don't think that's a problem here, but I wanted to give you a heads-up.
Lastly, there is a Plex addon for GamePass (https://github.com/plexinc-plugins/NFL.bundle). The code is (or at least used to be) very... verbose, and relies heavily on hard-coded magic values. We tried to avoid magic values as much as we could and rely on acquiring needed values from GamePass. That being said, their add-on may have already solved this issue and could be a nice source of inspiration.
I think that's my brain-dump for now. ;-)
Let me know if you have any questions.
---Alex
Hey guys,
I am back from my short little vacation and had an idea what probably could cause the issue.
The whole time I was wondering why there is an HTTP 403 - error (forbidden). Then I was thinking about maybe we need to pass http-header information, like autenthication or cookies!?
I don't exactly know how to figure out which information we need to pass. All I know is, that we need to pass it to ffmpeg and it has to be rooted.
Maybe one of you has more knowledge.
Regards Raffael
Raffael,
The cookie and authentication info should be passed along for every connection already. That being said, maybe they're now requiring something additional that we're missing.
---Alex
Alex,
I tracked the communication on my android tablet and foumd the following:
GET /nlsk/hls/securekey?id=195&url=/nlds/nfl/nfltv/as/live/nfltv_hd_800/20140511130500.m3u8.key HTTP/1.1 Accept-Encoding:gzip,deflate Cookie:nlqptid=nltid=nflgp&nltdt=8&nltnt=1&uid=701340&hdnea%3Dexpires%3D1399813796%7Eaccess%3D%2F*%7Emd5%3xxxxxxxxxxxxxxxxxxxxx Host:nlsk.neulion.com User-Agent:Safari/537.36 Mozilla/5.0 AppleWebKit/537.36 Chrome/31.0.1650.57 Connection:Keep-Alive
-HTTP/1.1 200 OK Server: nginx/1.2.6 Date: Sun, 11 May 2014 13:07:57 GMT Content-Length: 16 Connection: keep-alive Keep-Alive: timeout=5 Set-Cookie: X-NL-SK=ZXhwaXJlcz0xMzk5ODE0MDM3fmFjY2Vzcz0vKn5tZDU9NTI3NjhmYzM4MmVkZjU2NDk4MGM4ZGVlNTNkNTUwOGI%3D; Domain=.neulion.com; Expires=Sun, 11-May-2014 13:13:57 GMT; Path=/ Content-Disposition: attachment; filename="20140511130500.m3u8.key" Set-Cookie: nlstck=32052; path=/
So looks like we are right and need to find out which information needs to be passed to ffmpeg.
Are you not seeing this traffic with the XBMC client? I thought we were already acquiring the m3u8 key handing it to ffmpeg (though my memory could be off).
In any case, it looks like you're able to get the information necessary to diagnose this. I recommend that you just start hacking on the add-on and see if you can get it to work. :-)
---Alex
Hey guys,
good news, looks like I got the solution! I am watching NFL - Network for about 25 minutes now :)
I will do some more testing this afternoon and let you know.
Alex can you tell me how to add my fix to your repository, I'm new to github.
Regards, Raffael
awesome! Thanks in advance for all the work to both of you!
BaumSchorle,
Excellent! As for getting started with GitHub, they have excellent documentation. https://help.github.com/
I don't know how familiar you are with git already but basically the steps are: 1) you need git on your system 2) fork this repo 3) download your fork to your system 4) make a branch 5) commit your changes to your branch 6) push your branch to your repo 7) submit a pull request to me
It seems like a lot of steps, but it is reasonably straightforward once you get used to it.
However, if you'd rather not jump through all those hoops at the moment, you can just email the modified files to me directly (Alexqw85 at gmail). I'd review the changes, commit them crediting you, and get them in the repo in the next day or two. Of course I'd rather you submit a pull request, but I'm fine either way.
Thanks for working on this. :-)
---Alex
Ok guys, tried my way through git and submitted a pull request ;)
As far as I could test, this should solve the live content issue, however we need to verify that this fix also aplies to live games. We will see during preseason.
Thanks Alex for your help.
Regards, Raffael
I think this issue should be solved now, since Alex merged my fix.
If there is any problem, let me know!
Raffael
I will test it this evening and let you know, thanks again
I've just watched 10 minutes of nfl network live without it stopping. I've never lasted that long so it seems this issue is fixed. thanks!
Oh excellent. Thanks @ChristofDC for testing this. I will close this issue now.
@BaumSchorle It seems you've earned the honor of naming our next release. Is there a coach, player, or front office guy you especially like?
---Alex
Alex, thank you!
Since I am a huge Packers fan and the current version is named after a great coach, I'd love the next version to be named after Vince Lombardi! :)
It was fun to help an hack into this topic and I would love to help and participate in this project!
How can we best keep in contact?
Ahh, a fellow Packer fan. You sir are a man with good taste. :-) I'll cut a release sometime in the next day or two in honor of Vince Lombardi.
I'm glad you enjoyed hacking on this. Help is always appreciated. :-)
The best way to keep in contact is either on here with GitHub (via issues, patches, etc) or email me at Alexqw85 at gmail. Quite a few others are also active on here (@divingmule and @dahlSTROM especially), and I expect things to pick up again as the preseason approaches.
Thanks again!
---Alex
If I try to watch Total Access it stops after 1 or 2 minutes. There is no error message it just goes back to the start screen. I added the log
16:42:39 T:7296 NOTICE: special://profile/ is mapped to: special://masterprofile/ 16:42:39 T:7296 NOTICE: ----------------------------------------------------------------------- 16:42:39 T:7296 NOTICE: Starting XBMC (13.0-ALPHA11 Git:20131201-91e5be5). Platform: x86 Win32 32-bit 16:42:39 T:7296 NOTICE: Using Release XBMC x32 build, compiled Dec 1 2013 by MSVC 160040219 for x86 Win32 32-bit version 0x06000000 16:42:39 T:7296 NOTICE: Running on Windows 7 SP1 64-bit, build 7601 16:42:39 T:7296 NOTICE: Host CPU: Intel(R) Core(TM) i7 CPU 960 @ 3.20GHz, 8 cores available 16:42:39 T:7296 NOTICE: Desktop Resolution: 1920x1080 32Bit at 60Hz 16:42:39 T:7296 NOTICE: Running with administrator rights 16:42:39 T:7296 NOTICE: Aero is enabled 16:42:39 T:7296 NOTICE: special://xbmc/ is mapped to: C:\Program Files (x86)\XBMC_alpha 16:42:39 T:7296 NOTICE: special://xbmcbin/ is mapped to: C:\Program Files (x86)\XBMC_alpha 16:42:39 T:7296 NOTICE: special://masterprofile/ is mapped to: C:\Users\Konne\AppData\Roaming\XBMC\userdata 16:42:39 T:7296 NOTICE: special://home/ is mapped to: C:\Users\Konne\AppData\Roaming\XBMC\ 16:42:39 T:7296 NOTICE: special://temp/ is mapped to: C:\Users\Konne\AppData\Roaming\XBMC\cache 16:42:39 T:7296 NOTICE: The executable running is: C:\Program Files (x86)\XBMC_alpha\XBMC.exe 16:42:39 T:7296 NOTICE: Local hostname: Konne-Desktop 16:42:39 T:7296 NOTICE: Log File is located: C:\Users\Konne\AppData\Roaming\XBMC\xbmc.log 16:42:39 T:7296 NOTICE: ----------------------------------------------------------------------- 16:42:39 T:7296 NOTICE: load settings... 16:42:39 T:7296 NOTICE: No settings file to load (special://xbmc/system/advancedsettings.xml) 16:42:39 T:7296 NOTICE: Loaded settings file from special://profile/advancedsettings.xml 16:42:39 T:7296 NOTICE: Contents of special://profile/advancedsettings.xml are...
16:42:39 T:7296 WARNING: VIDEO database configuration is experimental. 16:42:39 T:7296 NOTICE: Default DVD Player: dvdplayer 16:42:39 T:7296 NOTICE: Default Video Player: dvdplayer 16:42:39 T:7296 NOTICE: Default Audio Player: paplayer 16:42:39 T:7296 NOTICE: Disabled debug logging due to GUI setting. Level 0. 16:42:39 T:7296 NOTICE: Log level changed to 0 16:42:39 T:7296 NOTICE: CMediaSourceSettings: loading media sources from special://masterprofile/sources.xml 16:42:39 T:7296 NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml. 16:42:39 T:7296 NOTICE: Loaded playercorefactory configuration 16:42:39 T:7296 NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml. 16:42:39 T:7296 NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping. 16:42:39 T:7296 NOTICE: CWakeOnAccess::LoadFromXML - unable to load:C:\Users\Konne\AppData\Roaming\XBMC\userdata\wakeonlan.xml 16:42:40 T:8164 NOTICE: Thread ActiveAE start, auto delete: false 16:42:40 T:5180 NOTICE: Thread AESink start, auto delete: false 16:42:41 T:8164 NOTICE: Found 2 Lists of Devices 16:42:41 T:8164 NOTICE: Enumerated DirectSound devices: 16:42:41 T:8164 NOTICE: Device 1 16:42:41 T:8164 NOTICE: m_deviceName : {000C7802-2C12-493C-89AE-BDDD0D9F4EE8} 16:42:41 T:8164 NOTICE: m_displayName : Speakers - Lautsprecher (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: DirectSound: Lautsprecher (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_PCM 16:42:41 T:8164 NOTICE: m_channels : FL,FR,FC,BL,BR,LFE 16:42:41 T:8164 NOTICE: m_sampleRates : 192000 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3 16:42:41 T:8164 NOTICE: Device 2 16:42:41 T:8164 NOTICE: m_deviceName : default 16:42:41 T:8164 NOTICE: m_displayName : default 16:42:41 T:8164 NOTICE: m_displayNameExtra: 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_PCM 16:42:41 T:8164 NOTICE: m_channels : FL,FR,FC,BL,BR,LFE 16:42:41 T:8164 NOTICE: m_sampleRates : 192000 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3 16:42:41 T:8164 NOTICE: Device 3 16:42:41 T:8164 NOTICE: m_deviceName : {276B5F00-80AA-4B62-8024-F4B75C9FE5CE} 16:42:41 T:8164 NOTICE: m_displayName : SPDIF - Realtek Digital Output (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: DirectSound: Realtek Digital Output (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_IEC958 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 48000 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3 16:42:41 T:8164 NOTICE: Device 4 16:42:41 T:8164 NOTICE: m_deviceName : {3BF762DA-15CE-4123-A5D0-EB582893F309} 16:42:41 T:8164 NOTICE: m_displayName : SPDIF - Realtek Digital Output(RCA) (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: DirectSound: Realtek Digital Output(RCA) (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_IEC958 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 48000 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3 16:42:41 T:8164 NOTICE: Device 5 16:42:41 T:8164 NOTICE: m_deviceName : {E7E47BEF-C208-467E-8135-78A9B52D0ADC} 16:42:41 T:8164 NOTICE: m_displayName : HDMI - SAMSUNG-1 (NVIDIA High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: DirectSound: SAMSUNG-1 (NVIDIA High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_HDMI 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 48000 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_FLOAT,AE_FMT_AC3 16:42:41 T:8164 NOTICE: Enumerated WASAPI devices: 16:42:41 T:8164 NOTICE: Device 1 16:42:41 T:8164 NOTICE: m_deviceName : {000C7802-2C12-493C-89AE-BDDD0D9F4EE8} 16:42:41 T:8164 NOTICE: m_displayName : Speakers - Lautsprecher (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: WASAPI: Lautsprecher (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_PCM 16:42:41 T:8164 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR 16:42:41 T:8164 NOTICE: m_sampleRates : 192000,96000,48000,44100 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM 16:42:41 T:8164 NOTICE: Device 2 16:42:41 T:8164 NOTICE: m_deviceName : default 16:42:41 T:8164 NOTICE: m_displayName : default 16:42:41 T:8164 NOTICE: m_displayNameExtra: 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_PCM 16:42:41 T:8164 NOTICE: m_channels : FL,FR,FC,LFE,SL,SR,BL,BR 16:42:41 T:8164 NOTICE: m_sampleRates : 192000,96000,48000,44100 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE,AE_FMT_LPCM 16:42:41 T:8164 NOTICE: Device 3 16:42:41 T:8164 NOTICE: m_deviceName : {276B5F00-80AA-4B62-8024-F4B75C9FE5CE} 16:42:41 T:8164 NOTICE: m_displayName : SPDIF - Realtek Digital Output (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: WASAPI: Realtek Digital Output (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_IEC958 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 192000,96000,48000,44100 16:42:41 T:8164 NOTICE: m_dataFormats : 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 16:42:41 T:8164 NOTICE: Device 4 16:42:41 T:8164 NOTICE: m_deviceName : {3BF762DA-15CE-4123-A5D0-EB582893F309} 16:42:41 T:8164 NOTICE: m_displayName : SPDIF - Realtek Digital Output(RCA) (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: WASAPI: Realtek Digital Output(RCA) (Realtek High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_IEC958 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 192000,96000,48000,44100 16:42:41 T:8164 NOTICE: m_dataFormats : 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 16:42:41 T:8164 NOTICE: Device 5 16:42:41 T:8164 NOTICE: m_deviceName : {E7E47BEF-C208-467E-8135-78A9B52D0ADC} 16:42:41 T:8164 NOTICE: m_displayName : HDMI - SAMSUNG-1 (NVIDIA High Definition Audio) 16:42:41 T:8164 NOTICE: m_displayNameExtra: WASAPI: SAMSUNG-1 (NVIDIA High Definition Audio) 16:42:41 T:8164 NOTICE: m_deviceType : AE_DEVTYPE_HDMI 16:42:41 T:8164 NOTICE: m_channels : FL,FR 16:42:41 T:8164 NOTICE: m_sampleRates : 48000,44100 16:42:41 T:8164 NOTICE: m_dataFormats : AE_FMT_S24NE4,AE_FMT_S24LE4,AE_FMT_S24BE4,AE_FMT_S16NE,AE_FMT_S16LE,AE_FMT_S16BE 16:42:41 T:7296 NOTICE: Running database version Addons15 16:42:41 T:7296 NOTICE: ADDONS: Using repository repository.xbmc.org 16:42:41 T:7296 NOTICE: ADDONS: Using repository repository.pvr-win32.xbmc.org 16:42:41 T:2264 NOTICE: Thread RemoteControl start, auto delete: false 16:42:41 T:6728 NOTICE: Thread PeripBusCEC start, auto delete: false 16:42:41 T:7972 NOTICE: Thread PeripBusUSB start, auto delete: false 16:42:41 T:2760 NOTICE: Thread JobWorker start, auto delete: true 16:42:41 T:7296 NOTICE: Found screen: PnP-Monitor (Standard) on NVIDIA GeForce GTX 570, adapter 0. 16:42:41 T:7296 NOTICE: Found screen: PnP-Monitor (Standard) on NVIDIA GeForce GTX 570, adapter 1. 16:42:41 T:7296 NOTICE: Primary mode: 1920x1080@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Secondary mode: 1920x1080@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 72.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 56.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 72.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x576@ 56.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x576@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x576@ 72.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 720x576@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 56.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 72.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 70.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1152x864@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x720@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x720@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x768@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1280x800@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x960@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x1024@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x1024@ 75.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1360x768@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1366x768@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1680x1050@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1680x1050@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 59.94 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1440x900@ 60.00 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 30.00i #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 29.97i #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 25.00i #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 50.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 24.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 23.98 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 25.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 30.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1920x1080@ 29.97 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 72.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 640x480@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 720x480@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 720x576@ 50.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 72.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 800x600@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 70.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1024x768@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1152x864@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1176x664@ 50.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1176x664@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1176x664@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1280x720@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x720@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x720@ 50.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x768@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1280x800@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x960@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x1024@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1280x1024@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1360x768@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1366x768@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1366x768@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x900@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1600x1024@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1680x1050@ 59.94 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1680x1050@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1768x992@ 25.00i #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1768x992@ 30.00i #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1768x992@ 29.97i #2 - Full Screen 16:42:41 T:7296 NOTICE: Previous line repeats 2 times. 16:42:41 T:7296 NOTICE: Additional mode: 1440x900@ 60.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Additional mode: 1440x900@ 75.00 #2 - Full Screen 16:42:41 T:7296 NOTICE: Checking resolution 17 16:42:42 T:7296 NOTICE: No Joystick name specified, loading default map 16:42:43 T:7296 NOTICE: Previous line repeats 35 times. 16:42:43 T:7296 NOTICE: Running database version Addons15 16:42:43 T:7296 NOTICE: Running database version ViewModes6 16:42:43 T:7296 NOTICE: Running database version Textures13 16:42:43 T:7296 NOTICE: Running database version MyMusic37 16:42:43 T:7296 NOTICE: Running database version xbmc_video77 16:42:43 T:7296 NOTICE: Running database version TV22 16:42:43 T:7296 NOTICE: Running database version Epg7 16:42:43 T:7296 NOTICE: initializing playlistplayer 16:42:43 T:7296 NOTICE: DONE initializing playlistplayer 16:42:43 T:7296 ERROR: JSONRPC: Could not parse type "GUI.Property.Value" 16:42:43 T:7296 ERROR: JSONRPC: Could not parse type "Setting.Details.SettingList" 16:42:43 T:6016 NOTICE: Thread LanguageInvoker start, auto delete: false 16:42:43 T:7296 NOTICE: Previous line repeats 4 times. 16:42:43 T:7296 NOTICE: CApplication::UpdateLibraries - Starting video library startup scan 16:42:44 T:6016 NOTICE: -->Python Interpreter Initialized<-- 16:42:44 T:3972 NOTICE: -->Python Interpreter Initialized<-- 16:42:44 T:5176 NOTICE: -->Python Interpreter Initialized<-- 16:42:44 T:6316 NOTICE: -->Python Interpreter Initialized<-- 16:42:44 T:7016 NOTICE: -->Python Interpreter Initialized<-- 16:42:44 T:7016 NOTICE: Artwork Downloader: ## Service - Run at startup: False 16:42:44 T:7016 NOTICE: Artwork Downloader: ## Service - Delayed startup: minutes 16:42:44 T:7016 NOTICE: Artwork Downloader: ## Service - Run as service: False 16:42:44 T:7016 NOTICE: Artwork Downloader: ## Service - Time: :00 16:42:46 T:3444 NOTICE: Thread VideoInfoScanner start, auto delete: false 16:42:46 T:7296 NOTICE: initialize done 16:42:46 T:6292 NOTICE: Thread LanguageInvoker start, auto delete: false 16:42:46 T:7296 NOTICE: Running the application... 16:42:46 T:7296 NOTICE: Webserver: Starting... 16:42:46 T:7296 NOTICE: WebServer: Started the webserver 16:42:46 T:7296 NOTICE: starting upnp server 16:42:46 T:7296 NOTICE: ES: Starting event server 16:42:46 T:5540 NOTICE: Thread EventServer start, auto delete: false 16:42:46 T:5540 NOTICE: ES: Starting UDP Event server on 0.0.0.0:9777 16:42:46 T:5540 NOTICE: UDP: Listening on port 9777 16:42:46 T:3444 NOTICE: VideoInfoScanner: Starting scan .. 16:42:46 T:7076 NOTICE: Thread TCPServer start, auto delete: false 16:42:46 T:8124 NOTICE: Thread AlarmClock start, auto delete: false 16:42:46 T:8128 NOTICE: Thread JobWorker start, auto delete: true 16:42:47 T:7708 NOTICE: Thread FileCache start, auto delete: false 16:42:48 T:6292 NOTICE: Previous line repeats 3 times. 16:42:48 T:6292 NOTICE: -->Python Interpreter Initialized<-- 16:42:48 T:6620 NOTICE: Thread JobWorker start, auto delete: true 16:42:48 T:3220 NOTICE: Previous line repeats 1 times. 16:42:48 T:3220 NOTICE: Thread FileCache start, auto delete: false 16:42:50 T:3444 WARNING: No information found for item 'smb://192.168.178.29/filme/Hangover/Hagnover 1/blubyte-hangover.unrated.1080p.mkv', it won't be added to the library. 16:42:53 T:6292 NOTICE: StorageServer Module loaded RUN 16:42:53 T:6292 NOTICE: StorageClient-2.5.2 Starting server 16:42:53 T:6292 NOTICE: StorageServer-2.5.2 Storage Server starting C:\Users\Konne\AppData\Roaming\XBMC\cache\commoncache.db 16:43:11 T:3444 NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:25 16:43:16 T:7012 NOTICE: Thread LanguageInvoker start, auto delete: false 16:43:17 T:7012 NOTICE: -->Python Interpreter Initialized<-- 16:43:22 T:7296 NOTICE: DVDPlayer: Opening: smb://192.168.178.29/serien/Serien/Two and a half Men/Staffel 11/Two and a half Men S11E11.mkv 16:43:22 T:7296 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 16:43:22 T:7392 NOTICE: Thread DVDPlayer start, auto delete: false 16:43:22 T:7392 NOTICE: Creating InputStream 16:43:22 T:7392 NOTICE: Creating Demuxer 16:43:22 T:7392 NOTICE: Opening video stream: 0 source: 256 16:43:22 T:7392 NOTICE: Creating video codec with codec id: 28 16:43:22 T:7392 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 16:43:22 T:7392 NOTICE: Creating video thread 16:43:22 T:7392 NOTICE: Opening audio stream: 1 source: 256 16:43:22 T:7392 NOTICE: Finding audio codec for: 86019 16:43:22 T:7756 NOTICE: Thread DVDPlayerVideo start, auto delete: false 16:43:22 T:7756 NOTICE: running thread: video_thread 16:43:22 T:7392 NOTICE: Creating audio thread 16:43:22 T:6036 NOTICE: Thread DVDPlayerAudio start, auto delete: false 16:43:22 T:6036 NOTICE: running thread: CDVDPlayerAudio::Process() 16:43:22 T:6036 NOTICE: Creating audio stream (codec id: 86019, channels: 6, sample rate: 48000, no pass-through) 16:43:22 T:7756 NOTICE: fps: 23.976024, pwidth: 1280, pheight: 720, dwidth: 1280, dheight: 720 16:43:22 T:7756 NOTICE: Display resolution USER : 1920x1080@ 60.00 #2 - Full Screen (17) 16:43:22 T:7756 NOTICE: D3D: rendering method forced to DXVA2 processor 16:43:22 T:7296 WARNING: CWinRenderer::UpdateVideoFilter - chosen scaling method 1 is not supported by renderer 17:04:55 T:5728 NOTICE: Thread JobWorker start, auto delete: true 17:04:56 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:04:56 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:04:56 T:7392 NOTICE: CDVDPlayer::OnExit() 17:04:56 T:7392 NOTICE: DVDPlayer: closing audio stream 17:04:56 T:7392 NOTICE: Closing audio stream 17:04:56 T:7392 NOTICE: Waiting for audio thread to exit 17:04:56 T:6036 NOTICE: thread end: CDVDPlayerAudio::OnExit() 17:04:56 T:7392 NOTICE: Closing audio device 17:04:56 T:7392 NOTICE: Deleting audio codec 17:04:56 T:7392 NOTICE: DVDPlayer: closing video stream 17:04:56 T:7392 NOTICE: Closing video stream 17:04:56 T:7392 NOTICE: waiting for video thread to exit 17:04:56 T:7756 NOTICE: thread end: video_thread 17:04:56 T:7392 NOTICE: deleting video codec 17:04:56 T:7392 NOTICE: CDVDPlayer::OnExit() deleting demuxer 17:04:56 T:7392 NOTICE: CDVDPlayer::OnExit() deleting input stream 17:04:56 T:7296 NOTICE: DVDPlayer: finished waiting 17:04:56 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:04:56 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:04:56 T:7296 NOTICE: DVDPlayer: finished waiting 17:04:56 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:04:56 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:04:56 T:7296 NOTICE: DVDPlayer: finished waiting 17:04:56 T:6200 NOTICE: Thread JobWorker start, auto delete: true 17:05:02 T:7296 NOTICE: DVDPlayer: Opening: smb://192.168.178.29/serien/Serien/Big Bang Theory/Staffel 7/The Big Bang Theory S07E12.mkv 17:05:02 T:7296 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED 17:05:02 T:1044 NOTICE: Thread DVDPlayer start, auto delete: false 17:05:02 T:1044 NOTICE: Creating InputStream 17:05:02 T:1044 NOTICE: Creating Demuxer 17:05:02 T:1044 NOTICE: Opening video stream: 0 source: 256 17:05:02 T:1044 NOTICE: Creating video codec with codec id: 28 17:05:02 T:1044 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 17:05:02 T:1044 NOTICE: Creating video thread 17:05:02 T:1044 NOTICE: Opening audio stream: 1 source: 256 17:05:02 T:1044 NOTICE: Finding audio codec for: 86019 17:05:02 T:4200 NOTICE: Thread DVDPlayerVideo start, auto delete: false 17:05:02 T:4200 NOTICE: running thread: video_thread 17:05:02 T:1044 NOTICE: Creating audio thread 17:05:02 T:5096 NOTICE: Thread DVDPlayerAudio start, auto delete: false 17:05:02 T:5096 NOTICE: running thread: CDVDPlayerAudio::Process() 17:05:02 T:5096 NOTICE: Creating audio stream (codec id: 86019, channels: 6, sample rate: 48000, no pass-through) 17:05:02 T:4200 NOTICE: fps: 23.976024, pwidth: 1280, pheight: 720, dwidth: 1280, dheight: 720 17:05:02 T:4200 NOTICE: Display resolution USER : 1920x1080@ 60.00 #2 - Full Screen (17) 17:05:02 T:4200 NOTICE: D3D: rendering method forced to DXVA2 processor 17:05:02 T:7296 WARNING: CWinRenderer::UpdateVideoFilter - chosen scaling method 1 is not supported by renderer 17:06:03 T:5540 NOTICE: ES: Client from 192.168.178.24 timed out 17:27:35 T:3844 NOTICE: Thread JobWorker start, auto delete: true 17:27:35 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:27:35 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:27:35 T:1044 NOTICE: CDVDPlayer::OnExit() 17:27:35 T:1044 NOTICE: DVDPlayer: closing audio stream 17:27:35 T:1044 NOTICE: Closing audio stream 17:27:35 T:1044 NOTICE: Waiting for audio thread to exit 17:27:35 T:5096 NOTICE: thread end: CDVDPlayerAudio::OnExit() 17:27:35 T:1044 NOTICE: Closing audio device 17:27:35 T:1044 NOTICE: Deleting audio codec 17:27:35 T:1044 NOTICE: DVDPlayer: closing video stream 17:27:35 T:1044 NOTICE: Closing video stream 17:27:35 T:1044 NOTICE: waiting for video thread to exit 17:27:35 T:4200 NOTICE: thread end: video_thread 17:27:35 T:1044 NOTICE: deleting video codec 17:27:35 T:1044 NOTICE: CDVDPlayer::OnExit() deleting demuxer 17:27:35 T:1044 NOTICE: CDVDPlayer::OnExit() deleting input stream 17:27:35 T:7296 NOTICE: DVDPlayer: finished waiting 17:27:35 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:27:35 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:27:35 T:7296 NOTICE: DVDPlayer: finished waiting 17:27:35 T:7296 NOTICE: CDVDPlayer::CloseFile() 17:27:35 T:7296 NOTICE: DVDPlayer: waiting for threads to exit 17:27:35 T:7296 NOTICE: DVDPlayer: finished waiting 17:27:35 T:1764 NOTICE: Thread JobWorker start, auto delete: true 17:27:41 T:8008 NOTICE: Thread LanguageInvoker start, auto delete: false 17:27:41 T:8008 NOTICE: -->Python Interpreter Initialized<-- 17:27:46 T:4888 NOTICE: Thread BackgroundLoader start, auto delete: false 17:27:49 T:8064 NOTICE: Thread LanguageInvoker start, auto delete: false 17:27:49 T:8064 NOTICE: -->Python Interpreter Initialized<-- 17:27:49 T:8064 WARNING: CVideoInfoTag::GetDurationFromMinuteString should be in minutes. Interpreting 'None' as 0 minutes
17:27:49 T:7716 NOTICE: Thread BackgroundLoader start, auto delete: false
17:27:51 T:6368 NOTICE: Thread LanguageInvoker start, auto delete: false
17:27:51 T:6368 NOTICE: -->Python Interpreter Initialized<--
17:27:52 T:7596 NOTICE: Thread BackgroundLoader start, auto delete: false
17:27:57 T:5640 NOTICE: Thread LanguageInvoker start, auto delete: false
17:27:57 T:5640 NOTICE: -->Python Interpreter Initialized<--
17:27:59 T:7296 NOTICE: DVDPlayer: Opening: http://nlds82.cdnak.neulion.com/nlds_vod/nfl/vod/2014/01/02/140102/2_140102_t1_nfltv_2013_h_quickpick1_1_4500.mp4.m3u8
17:27:59 T:7296 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOTINITIALIZED
17:27:59 T:7652 NOTICE: Thread DVDPlayer start, auto delete: false
17:27:59 T:7652 NOTICE: Creating InputStream
17:28:00 T:692 NOTICE: Thread FileCache start, auto delete: false
17:28:00 T:7652 NOTICE: Creating Demuxer
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cf '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfd '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdu '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdui '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 c '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: 'TRUE FALSE / FALSE 1577145000 cfd '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly_.tmdb.org TRUE / FALSE 1577145000 cfdui '
17:28:00 T:7652 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly_.google.de TRUE / FALSE 1404138531 NI '
17:28:01 T:7652 NOTICE: Opening video stream: 0 source: 256
17:28:01 T:7652 NOTICE: Creating video codec with codec id: 28
17:28:01 T:7652 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
17:28:01 T:7652 NOTICE: Creating video thread
17:28:01 T:7652 NOTICE: Opening audio stream: 1 source: 256
17:28:01 T:7652 NOTICE: Finding audio codec for: 86018
17:28:01 T:6060 NOTICE: Thread DVDPlayerVideo start, auto delete: false
17:28:01 T:6060 NOTICE: running thread: video_thread
17:28:01 T:7652 NOTICE: Creating audio thread
17:28:01 T:3272 NOTICE: Thread DVDPlayerAudio start, auto delete: false
17:28:01 T:3272 NOTICE: running thread: CDVDPlayerAudio::Process()
17:28:01 T:3272 NOTICE: Creating audio stream (codec id: 86018, channels: 2, sample rate: 44100, no pass-through)
17:28:01 T:6060 NOTICE: fps: 29.970030, pwidth: 1280, pheight: 720, dwidth: 1280, dheight: 720
17:28:01 T:6060 NOTICE: Display resolution USER : 1920x1080@ 60.00 #2 - Full Screen (17)
17:28:01 T:6060 NOTICE: D3D: rendering method forced to DXVA2 processor
17:28:01 T:7296 WARNING: CWinRenderer::UpdateVideoFilter - chosen scaling method 1 is not supported by renderer
17:28:01 T:3272 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
17:28:02 T:6060 WARNING: Previous line repeats 4 times.
17:28:02 T:6060 WARNING: CDVDMessageQueue(video)::Get - asked for new data packet, with nothing available
17:28:29 T:3272 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
17:28:30 T:6060 WARNING: CDVDMessageQueue(video)::Get - asked for new data packet, with nothing available
17:28:34 T:7652 NOTICE: CDVDPlayer::OnExit()
17:28:34 T:7652 NOTICE: DVDPlayer: eof, waiting for queues to empty
17:28:34 T:7652 NOTICE: DVDPlayer: closing audio stream
17:28:34 T:7652 NOTICE: Closing audio stream
17:28:34 T:7652 NOTICE: CDVDMessageQueue(audio)::WaitUntilEmpty
17:28:34 T:7652 NOTICE: Waiting for audio thread to exit
17:28:34 T:3272 NOTICE: thread end: CDVDPlayerAudio::OnExit()
17:28:34 T:7652 NOTICE: Closing audio device
17:28:34 T:7652 NOTICE: Deleting audio codec
17:28:34 T:7652 NOTICE: DVDPlayer: closing video stream
17:28:34 T:7652 NOTICE: Closing video stream
17:28:34 T:7652 NOTICE: CDVDMessageQueue(video)::WaitUntilEmpty
17:28:34 T:7652 NOTICE: waiting for video thread to exit
17:28:34 T:6060 ERROR: Got MSGQ_ABORT or MSGO_IS_ERROR return true
17:28:34 T:6060 NOTICE: thread end: video_thread
17:28:34 T:7652 NOTICE: deleting video codec
17:28:34 T:7652 NOTICE: CDVDPlayer::OnExit() deleting demuxer
17:28:34 T:7652 NOTICE: CDVDPlayer::OnExit() deleting input stream
17:28:34 T:6172 NOTICE: Thread LanguageInvoker start, auto delete: false
17:28:34 T:6172 NOTICE: -->Python Interpreter Initialized<--
17:28:34 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:28:34 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:28:34 T:7296 NOTICE: DVDPlayer: finished waiting
17:28:34 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:28:34 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:28:34 T:7296 NOTICE: DVDPlayer: finished waiting
17:28:34 T:7296 ERROR: Control 50 in window 10025 has been asked to focus, but it can't
17:28:35 T:5892 NOTICE: Thread JobWorker start, auto delete: true
17:28:38 T:3768 NOTICE: Thread BackgroundLoader start, auto delete: false
17:28:38 T:7460 NOTICE: Thread JobWorker start, auto delete: true
17:28:40 T:4520 NOTICE: Thread LanguageInvoker start, auto delete: false
17:28:40 T:4520 NOTICE: -->Python Interpreter Initialized<--
17:28:43 T:7296 NOTICE: DVDPlayer: Opening: http://nlds82.cdnak.neulion.com/nlds_vod/nfl/vod/2014/01/02/140102/2_140102_t1_nfltv_2013_h_quickpick1_1_3000.mp4.m3u8
17:28:43 T:7296 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOTINITIALIZED
17:28:43 T:4752 NOTICE: Thread DVDPlayer start, auto delete: false
17:28:43 T:4752 NOTICE: Creating InputStream
17:28:43 T:6180 NOTICE: Thread FileCache start, auto delete: false
17:28:43 T:4752 NOTICE: Creating Demuxer
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cf '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfd '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdu '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdui '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 c '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: 'TRUE FALSE / FALSE 1577145000 cfd '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly_.tmdb.org TRUE / FALSE 1577145000 cfdui '
17:28:43 T:4752 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly_.google.de TRUE / FALSE 1404138531 NI '
17:28:44 T:4752 NOTICE: Opening video stream: 0 source: 256
17:28:44 T:4752 NOTICE: Creating video codec with codec id: 28
17:28:44 T:4752 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
17:28:44 T:4752 NOTICE: Creating video thread
17:28:44 T:4752 NOTICE: Opening audio stream: 1 source: 256
17:28:44 T:4752 NOTICE: Finding audio codec for: 86018
17:28:44 T:7200 NOTICE: Thread DVDPlayerVideo start, auto delete: false
17:28:44 T:7200 NOTICE: running thread: video_thread
17:28:44 T:4752 NOTICE: Creating audio thread
17:28:44 T:7572 NOTICE: Thread DVDPlayerAudio start, auto delete: false
17:28:44 T:7572 NOTICE: running thread: CDVDPlayerAudio::Process()
17:28:44 T:7572 NOTICE: Creating audio stream (codec id: 86018, channels: 2, sample rate: 44100, no pass-through)
17:28:44 T:7200 NOTICE: fps: 29.970030, pwidth: 1280, pheight: 720, dwidth: 1280, dheight: 720
17:28:44 T:7200 NOTICE: Display resolution USER : 1920x1080@ 60.00 #2 - Full Screen (17)
17:28:44 T:7200 NOTICE: D3D: rendering method forced to DXVA2 processor
17:28:44 T:7296 WARNING: CWinRenderer::UpdateVideoFilter - chosen scaling method 1 is not supported by renderer
17:29:43 T:5540 NOTICE: ES: Client from 192.168.178.24 timed out
17:30:44 T:7572 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
17:30:44 T:7200 WARNING: CDVDMessageQueue(video)::Get - asked for new data packet, with nothing available
17:30:48 T:4752 NOTICE: CDVDPlayer::OnExit()
17:30:48 T:4752 NOTICE: DVDPlayer: eof, waiting for queues to empty
17:30:48 T:4752 NOTICE: DVDPlayer: closing audio stream
17:30:48 T:4752 NOTICE: Closing audio stream
17:30:48 T:4752 NOTICE: CDVDMessageQueue(audio)::WaitUntilEmpty
17:30:48 T:4752 NOTICE: Waiting for audio thread to exit
17:30:48 T:7572 NOTICE: thread end: CDVDPlayerAudio::OnExit()
17:30:48 T:4752 NOTICE: Closing audio device
17:30:48 T:4752 NOTICE: Deleting audio codec
17:30:48 T:4752 NOTICE: DVDPlayer: closing video stream
17:30:48 T:4752 NOTICE: Closing video stream
17:30:48 T:4752 NOTICE: CDVDMessageQueue(video)::WaitUntilEmpty
17:30:48 T:4752 NOTICE: waiting for video thread to exit
17:30:48 T:7200 ERROR: Got MSGQ_ABORT or MSGO_IS_ERROR return true
17:30:48 T:7200 NOTICE: thread end: video_thread
17:30:48 T:4752 NOTICE: deleting video codec
17:30:48 T:4752 NOTICE: CDVDPlayer::OnExit() deleting demuxer
17:30:48 T:4752 NOTICE: CDVDPlayer::OnExit() deleting input stream
17:30:48 T:5808 NOTICE: Thread BackgroundLoader start, auto delete: false
17:30:48 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:30:48 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:30:48 T:7296 NOTICE: DVDPlayer: finished waiting
17:30:48 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:30:48 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:30:48 T:7296 NOTICE: DVDPlayer: finished waiting
17:30:48 T:4488 NOTICE: Thread JobWorker start, auto delete: true
17:35:07 T:5688 NOTICE: Previous line repeats 2 times.
17:35:07 T:5688 NOTICE: Thread BackgroundLoader start, auto delete: false
17:35:07 T:7872 NOTICE: Thread JobWorker start, auto delete: true
17:35:13 T:5720 NOTICE: Thread BackgroundLoader start, auto delete: false
17:36:23 T:7348 NOTICE: Previous line repeats 11 times.
17:36:23 T:7348 NOTICE: Thread JobWorker start, auto delete: true
17:36:25 T:6688 NOTICE: Previous line repeats 1 times.
17:36:25 T:6688 NOTICE: Thread LanguageInvoker start, auto delete: false
17:36:25 T:6688 NOTICE: -->Python Interpreter Initialized<--
17:36:28 T:7296 NOTICE: DVDPlayer: Opening: http://nlds82.cdnak.neulion.com/nlds_vod/nfl/vod/2014/01/02/140102/2_140102_t1_nfltv_2013_h_quickpick1_1_3000.mp4.m3u8
17:36:28 T:7296 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOTINITIALIZED
17:36:28 T:6932 NOTICE: Thread DVDPlayer start, auto delete: false
17:36:28 T:6932 NOTICE: Creating InputStream
17:36:28 T:7840 NOTICE: Thread FileCache start, auto delete: false
17:36:28 T:6932 NOTICE: Creating Demuxer
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cf '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfd '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdu '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 cfdui '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '.thetvdb.com TRUE / FALSE 1577145000 c '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: 'TRUE FALSE / FALSE 1577145000 _cfd '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly.tmdb.org TRUE / FALSE 1577145000 _cfdui '
17:36:28 T:6932 ERROR: CCurlFile::GetCookies - invalid cookie: '#HttpOnly.google.de TRUE / FALSE 1404138531 NI '
17:36:28 T:6932 NOTICE: Opening video stream: 0 source: 256
17:36:28 T:6932 NOTICE: Creating video codec with codec id: 28
17:36:28 T:6932 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
17:36:28 T:6932 NOTICE: Creating video thread
17:36:28 T:6932 NOTICE: Opening audio stream: 1 source: 256
17:36:28 T:6932 NOTICE: Finding audio codec for: 86018
17:36:28 T:7084 NOTICE: Thread DVDPlayerVideo start, auto delete: false
17:36:28 T:7084 NOTICE: running thread: video_thread
17:36:28 T:6932 NOTICE: Creating audio thread
17:36:28 T:4164 NOTICE: Thread DVDPlayerAudio start, auto delete: false
17:36:28 T:4164 NOTICE: running thread: CDVDPlayerAudio::Process()
17:36:28 T:4164 NOTICE: Creating audio stream (codec id: 86018, channels: 2, sample rate: 44100, no pass-through)
17:36:28 T:7084 NOTICE: fps: 29.970030, pwidth: 1280, pheight: 720, dwidth: 1280, dheight: 720
17:36:28 T:7084 NOTICE: Display resolution USER : 1920x1080@ 60.00 #2 - Full Screen (17)
17:36:28 T:7084 NOTICE: D3D: rendering method forced to DXVA2 processor
17:36:28 T:7296 WARNING: CWinRenderer::UpdateVideoFilter - chosen scaling method 1 is not supported by renderer
17:36:39 T:4164 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
17:36:39 T:7084 WARNING: CDVDMessageQueue(video)::Get - asked for new data packet, with nothing available
17:37:05 T:4164 WARNING: CDVDMessageQueue(audio)::Get - asked for new data packet, with nothing available
17:37:06 T:7084 WARNING: CDVDMessageQueue(video)::Get - asked for new data packet, with nothing available
17:37:10 T:6932 NOTICE: CDVDPlayer::OnExit()
17:37:10 T:6932 NOTICE: DVDPlayer: eof, waiting for queues to empty
17:37:10 T:6932 NOTICE: DVDPlayer: closing audio stream
17:37:10 T:6932 NOTICE: Closing audio stream
17:37:10 T:6932 NOTICE: CDVDMessageQueue(audio)::WaitUntilEmpty
17:37:10 T:6932 NOTICE: Waiting for audio thread to exit
17:37:10 T:4164 NOTICE: thread end: CDVDPlayerAudio::OnExit()
17:37:10 T:6932 NOTICE: Closing audio device
17:37:10 T:6932 NOTICE: Deleting audio codec
17:37:10 T:6932 NOTICE: DVDPlayer: closing video stream
17:37:10 T:6932 NOTICE: Closing video stream
17:37:10 T:6932 NOTICE: CDVDMessageQueue(video)::WaitUntilEmpty
17:37:10 T:6932 NOTICE: waiting for video thread to exit
17:37:10 T:7084 ERROR: Got MSGQ_ABORT or MSGO_IS_ERROR return true
17:37:10 T:7084 NOTICE: thread end: video_thread
17:37:10 T:6932 NOTICE: deleting video codec
17:37:10 T:6932 NOTICE: CDVDPlayer::OnExit() deleting demuxer
17:37:10 T:6932 NOTICE: CDVDPlayer::OnExit() deleting input stream
17:37:10 T:7292 NOTICE: Thread BackgroundLoader start, auto delete: false
17:37:10 T:3436 NOTICE: Thread JobWorker start, auto delete: true
17:37:10 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:37:10 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:37:10 T:7296 NOTICE: DVDPlayer: finished waiting
17:37:10 T:7296 NOTICE: CDVDPlayer::CloseFile()
17:37:10 T:7296 NOTICE: DVDPlayer: waiting for threads to exit
17:37:10 T:7296 NOTICE: DVDPlayer: finished waiting
17:37:10 T:5272 NOTICE: Thread JobWorker start, auto delete: true