FilmInfo+ - A german movie details scraper with auto grouping (2 Viewers)

hasengrube

Portal Member
July 28, 2008
23
12
Home Country
Germany Germany
seems its no longer usable, it causes full cpu load when importing or unfortunately fails completely... regrettably the dev seems gone too, it was a damn good scraper for german stuff:(

True... :(
 

bta489

Portal Pro
March 17, 2013
168
92
Home Country
Germany Germany
Since none of the devs responded here and I had a couple of movies to import I spent most of the weekend trying to figure out how this thing works and fiddled with it.
It's quite confusing at first, but with a little a lot of trial and error I believe I got most of it working again. It still has some issues here and there and I have to cleanup my unsuccessful attempts, but when it's somewhat reliable again I'll upload it here.

One question, though: Has anyone got a source for german Taglines? They have to exist somewhere, because some movies I imported when it was still working have them, but I can't seem to find any online at IMDB, TMDB, OFDB or Filmstarts.de.
 

bta489

Portal Pro
March 17, 2013
168
92
Home Country
Germany Germany
Hi there,

Unfortunately I wasn't able to devote much time to the script last week, but now I think it is somewhat usable again. I tried not to mess with it too much, to not break it any further. I mostly adjusted the Regular Expressions here and there to match the websites. Here is a list of the changes I made:
  • Bumped Version Number to a nice even 1.5.0
  • Fixed Filmstarts.de +/-1 Year Offset Search
  • Fixed IMDB Retrieval of Runtime, Score, Popularity, Original Title, Keywords & Studios
  • Changed it to always load (english) IMDB Tagline (If anyone knows a source for german taglines I'll try to include it)
  • Removed OFDB Country-Parser
  • Added a Basic Filename-Scraper for Language (Deactivated by default)
The Filename language scraper can be activated by setting useFilenameLanguage to true (line 66 in the .xml). You can Provide a regular Expression underneath. It is currently set up to recognize 2-Letter Uppercase Language-Codes in Square Brackets and seperated by a comma at the end of the filename (like "Some Random Movie (2018) [DE,EN].mkv" for A file containing German and English Audio-Tracks). It should set the Language-field to a filename-friendly "Deutsch, Englisch" to allow showing a corresponding logo in the GUI. Currently Only DE (german), EN (english) and FR (french) are recognized (since they are the only ones I need). Should you need more you can add them around line 143 of the .xml file.

Please bear in mind that I'm not the original Author and that this is only a hack to make it usable again. I tested it for a bit, but there are no warranties whatsoever.
 

Attachments

  • FilmInfo_V1.5.0.xml
    86.4 KB

badboyxx

Portal Pro
June 15, 2012
728
97
Home Country
Germany Germany
Hi there,

Unfortunately I wasn't able to devote much time to the script last week, but now I think it is somewhat usable again. I tried not to mess with it too much, to not break it any further. I mostly adjusted the Regular Expressions here and there to match the websites. Here is a list of the changes I made:
  • Bumped Version Number to a nice even 1.5.0
  • Fixed Filmstarts.de +/-1 Year Offset Search
  • Fixed IMDB Retrieval of Runtime, Score, Popularity, Original Title, Keywords & Studios
  • Changed it to always load (english) IMDB Tagline (If anyone knows a source for german taglines I'll try to include it)
  • Removed OFDB Country-Parser
  • Added a Basic Filename-Scraper for Language (Deactivated by default)
The Filename language scraper can be activated by setting useFilenameLanguage to true (line 66 in the .xml). You can Provide a regular Expression underneath. It is currently set up to recognize 2-Letter Uppercase Language-Codes in Square Brackets and seperated by a comma at the end of the filename (like "Some Random Movie (2018) [DE,EN].mkv" for A file containing German and English Audio-Tracks). It should set the Language-field to a filename-friendly "Deutsch, Englisch" to allow showing a corresponding logo in the GUI. Currently Only DE (german), EN (english) and FR (french) are recognized (since they are the only ones I need). Should you need more you can add them around line 143 of the .xml file.

Please bear in mind that I'm not the original Author and that this is only a hack to make it usable again. I tested it for a bit, but there are no warranties whatsoever.

I have tested 5 movies and it works perfect. Many thanks for the work.
 

Merlyn

Portal Pro
July 8, 2011
250
322
Home Country
Germany Germany
Thanks a lot!
I am still subscribed to this thread and following. Unfortunately I am not able to provide much help anymore. Since I am not using media portal anymore and haven't been for several years.
I am glad though that my old script still has it's use and that there are dedicated people willing to keep it alive. Kudos to you!

Gesendet von meinem SM-G920F mit Tapatalk
 

hasengrube

Portal Member
July 28, 2008
23
12
Home Country
Germany Germany
Perfect! Thanks a lot...
Only 2 things left as far as i can see...
Doesn't Import "Collections" anymore
If no Germandescription available he doesn't take the Englisch one...

But... well.. i can live with that. It's working again - great job.
 

bta489

Portal Pro
March 17, 2013
168
92
Home Country
Germany Germany
I haven't touched the Collections-Section (yet), and to be quite frank I don't really know how it's supposed to work. Assuming that the original logic still works as intended, I took a quick look at the RegEx-Patterns and tried to adjust them to the current IMDB-Website. Try replacing the whole block of Patterns at around line 1169 to 1196 in the .xml with this:

Code:
               <set name="rx_followedby_block">
                   <![CDATA[
                   (?:<h4\sclass="li_group">\s*Followed\sby&nbsp;\s*</h4>\s*)([\s\S]+?)(?=<\s*a\sid=)
                   ]]>
               </set>
               <set name="rx_follows_block">
                   <![CDATA[
                   (?:<h4\sclass="li_group">\s*Follows&nbsp;\s*</h4>\s*)(?<follows_block>[\s\S]+?)(?=<\s*a\sid=)
                   ]]>
               </set>
               <set name="rx_follow_links">
                   <![CDATA[
                   (?:a\shref="/title/)(?<IMDB_ID>tt\d{7,})(?:/*">)(?<TITLE>.*?)(?:</a>.+?\()(?<YEAR>\d{4})(?:\))
                   ]]>
               </set>
               <set name="rx_spinoff_block">
                   <![CDATA[
                   (?:<h4\sclass="li_group">Spin-off&nbsp;\s*</h4>\s*)(?<followedby_block>[\s\S]+?)(?=<a\sid)
                   ]]>
               </set>
               <set name="rx_spinofffrom_block">
                   <![CDATA[
                   (?:<h4\sclass="li_group">Spun-off\sfrom&nbsp;</h4>\s*)([\s\S]*?)(?=<a\sid)
                   ]]>
               </set>
               <set name="rx_quot_replace">
                   <![CDATA["]]>
               </set>

Then delete and add the Importer again in the Config and try again. I tested with 2 Movies and it returned a Collection for Both.

Not sure though why there's no English summary fallback. I'd have to take a deeper look. @hasengrube Can you post Logs (file "movingpictures.log", Debug-Level if possible) of an import where it failed to fetch a summary?
 

hasengrube

Portal Member
July 28, 2008
23
12
Home Country
Germany Germany
Then delete and add the Importer again in the Config and try again. I tested with 2 Movies and it returned a Collection for Both.

Not sure though why there's no English summary fallback. I'd have to take a deeper look. @hasengrube Can you post Logs (file "movingpictures.log", Debug-Level if possible) of an import where it failed to fetch a summary?

I replaced the Code - Attached you'll find the desired log.
I tried to reimport Rocky 1 and Schindler's List... one should be IMdb Top250 - the other Oscars... but both no entry.

Thank's a lot for your help


Code:
16-Oct-2018 13:06:35  Info [  MovingPicturesCore]: Moving Pictures (1.8.2:0)
16-Oct-2018 13:06:35  Info [  MovingPicturesCore]: Plugin Launched
16-Oct-2018 13:06:35  Info [     DatabaseManager]: Executing SQL integrity check
16-Oct-2018 13:06:36  Info [     DatabaseManager]: Database integrity check succeeded
16-Oct-2018 13:06:36  Info [     DatabaseManager]: Backing up database
16-Oct-2018 13:06:36  Info [     DatabaseManager]: Successfully Opened Database: C:\ProgramData\Team MediaPortal\MediaPortal\Database\movingpictures.db3
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Thread Count = "5"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Regular Expression Noise Filter = "(([\(\{\[]|\b)((576|720|1080)[pi]|dir(ectors )?cut|dvd([r59]|rip|scr(eener)?)|(avc)?hd|wmv|ntsc|pal|mpeg|dsr|r[1-5]|bd[59]|dts|ac3|blu(-)?ray|[hp]dtv|stv|hddvd|xvid|divx|x264|dxva|(?-i)FEST[Ii]VAL|L[iI]M[iI]TED|[WF]S|PROPER|REPACK|RER[Ii]P|REAL|RETA[Ii]L|EXTENDED|REMASTERED|UNRATED|CHRONO|THEATR[Ii]CAL|DC|SE|UNCUT|[Ii]NTERNAL|[DS]UBBED)([\]\)\}]|\b)(-[^\s]+$)?)"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Default User Agent = "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable Importer While In GUI = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: JPG Compression Quality = "90"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Always Display Data Provider Tags = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Title Auto-Approve Threshold = "1"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Year Auto-Approve Distance = "1"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Auto-approve on alternate titles = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Only Auto Approve from Primary Data Source = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Always Group Files In The Same Folder = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Prefer Folder Name for Movie Matching = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Automatically Import Inserted DVDs = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Ignore Interactive Content on Video Disc = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Minimum Possible Match Threshold = "4"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Data Provider Request Limit = "0"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Automatically Aquire MediaInfo Details From Movies = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: "Date Added" Population Method = "created"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Automatically Rescan Network Paths = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Rescan Interval = "90"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Delay Import of Write-Locked Files = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable NFO Scanner = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: NFO Scanner File Extensions = "nfo;txt"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Auto-Approve on NFO File IMDb Match = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable DiscID Lookup for DVDs = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable IMDb Lookup = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Regular Expression Filter = "sample"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Include Parent Foldername When Matching = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Max Filesize (MB) = "150"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Cover Artwork Folder = "C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\FullSize"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Cover Artwork Thumbnails Folder = "C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\Thumbs"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Redownload Cover Artwork on Rescan = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Max Covers per Movie = "5"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Max Covers per Movie per Session = "3"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Cover Artwork Filename Pattern = "%imdb_id%.jpg|%imdb_id%.png|%imdb_id%.bmp"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Search Movie Folder for Cover Art = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Movie Folder Cover Artwork Filename Pattern = "folder.jpg|folder.png|folder.bmp"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "175"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "260"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "680"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "960"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Cover Thumbnail Width = "175"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Backdrop Folder = "C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Backdrops\FullSize"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Backdrop Thumbnails Folder = "C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Backdrops\Thumbs"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Redownload Backdrop on Rescan = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Backdrop Filename Pattern = "%imdb_id%.jpg|%imdb_id%.png|%imdb_id%.bmp"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Search Movie Folder for Backdrops = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Movie Folder Backdrop Filename Pattern = "backdrop.jpg|backdrop.png|backdrop.bmp"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "1280"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "720"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "1920"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "1080"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Max Timeouts = "10"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Timeout Length = "5000"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Timeout Increment = "1000"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Data Provider Management = "manual"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Automatic Data Provider Language = "de"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Use Translator Service = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Translator Service Configured = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Translation Language = "English"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Date/Time of last check for TheMovieDb configuration = "2018-10-14"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Period check of TheMovieDb configuration = "7"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Base Url of TheMovieDb images = "http://image.tmdb.org/t/p/original"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Adult Search = "false"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Personal API Key = " "
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Last Importer Mode = "ALL"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Default Layout = "lastused"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Last Used Layout = "list"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Click Shows Details = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Max Actors, Genres, etc. to Display = "5"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Name for Home Screen = "Moving Pictures"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Default Sort Field = "Title"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow user to delete files from the GUI context menu = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow Movie Rescan in GUI = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Display Rescan Menu Item in GUI [mostly obsolete; use in GUI Importer] = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Show Confirmation Prompt when Updating Movie Details = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Auto-Prompt For User Rating = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow Grouping = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Display the actual runtime of a movie = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Reset the selected movie when switching categories = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Second Label on List Layout = "year"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Remove Articles From Display Title = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Artwork Loading Delay = "250"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Details Loading Delay = "250"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Category Random Artwork Refresh Interval = "120"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Use Remote Control Filtering = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: GUI Watch Percentage = "90"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Disk Insertion Behavior = "DETAILS"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Custom Intro Location = " "
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Custom Intro Count = "1"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Use External Player = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable Dynamic Refresh Rate Changer Settings = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: External Player Path = "C:\MyExternalPlayer\MyExternalPlayer.exe"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: External Player Arguments = "%filename%"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Remove Title Articles = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Articles for Removal = "en(the|a|an),de(ein|eine|der|die|das),pt(a|as|o|os|um|uma|uns|umas),nl(de|het),fr(le|la|les|un|une|des|l),es(el|la|lo|los|las|un|una|unos|unas)"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable Parental Controls = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Parental Controls Filter ID = "14"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Parental Controls Password = "*****"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Parental Controls Timeout = "10"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Filter Menu ID = "2"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Use Default Filter = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Default Filter ID = "1"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Category Menu ID = "1"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Movie Manager Filter Menu ID = "3"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable Categories = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Dynamic Actor Category Limit = "2"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Skinners Debug Mode = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: File Rename Pattern = "${movie.title} (${movie.year})"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Directory Rename Pattern = "${movie.title} (${movie.year})"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Multi-Part Rename Pattern = " Part #"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Additional Files Type to Rename = ".srt|.idx|.sub|.ac3|.dts|.nfo|.txt"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Include Folders When Renaming = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Include Files When Renaming = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Include Secondary Files When Renaming = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Show Advanced Settings Warning = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "1497"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "847"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: X = "116"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Y = "164"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Data Source Manager Enhanced Debug Mode = "False"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Data Provider Manager Initialized = "True"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Version Number = "1.8.2.0"
16-Oct-2018 13:06:36 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow Disk Monitor to Watch for Drive Changes = "True"
16-Oct-2018 13:06:36  Info [     SettingsManager]: SettingsManager Created
16-Oct-2018 13:06:36  Info [DatabaseMaintenanceM]: Checking for bad data source entries...
16-Oct-2018 13:06:43  Info [ DataProviderManager]: DataProviderManager Starting
16-Oct-2018 13:06:43  Info [ DataProviderManager]: Loading existing data sources...
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: moviemaze.de (874921) Version 1.1.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: ofdb.de (874920) Version 2.3.2
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Ember Media Manager (Local) (141416) Version 1.0.2
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: mymovies.xml (Local) (891001) Version 1.0.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: XBMC (Local) (141320) Version 1.0.4
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: FilmInfo+ (360593) Version 1.5.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Scope.dk (141316) Version 1.1.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Kinopoisk.ru (141522) Version 1.5.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: mymovies.it (874909) Version 1.0.11
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: FilmWeb.pl (141516) Version 2.2.11
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Alpacine.com (141517) Version 1.0.2
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: kvikmyndir.is (354001) Version 1.3.4
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: sratim.co.il (241682) Version 3.0.12
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Daum (891820) Version 1.0.1
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: allocine.fr (874930) Version 2.1.1
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: CSFD.cz (874940) Version 0.3.1
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: filmtipset.se (874987) Version 1.6.0
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: ptgate.pt (784920) Version 1.0.0
16-Oct-2018 13:06:43  Info [ DataProviderManager]: Checking internal scripts for updates...
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: imdb.com (874902) Version 3.0.2
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: ofdb.de (874920) Version 2.3.2
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: moviemaze.de (874921) Version 1.1.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: allocine.fr (874930) Version 2.1.1
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: mymovies.it (874909) Version 1.0.11
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: FilmWeb.pl (141516) Version 2.2.11
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Scope.dk (141316) Version 1.1.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Kinopoisk.ru (141522) Version 1.5.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Alpacine.com (141517) Version 1.0.2
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: sratim.co.il (241682) Version 3.0.12
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: FilmAffinity.com (141416) Version 1.0.10
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: FilmAffinity.com (141416) Version 1.0.10
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: CSFD.cz (874940) Version 0.3.1
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: mymovies.xml (Local) (891001) Version 1.0.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: XBMC (Local) (141320) Version 1.0.4
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: filmtipset.se (874987) Version 1.6.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: ptgate.pt (784920) Version 1.0.0
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Daum (891820) Version 1.0.1
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: kvikmyndir.is (354001) Version 1.3.4
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [   ScriptableScraper]: Parsing scriptable scraper: Ember Media Manager (Local) (141416) Version 1.0.2
16-Oct-2018 13:06:43 Debug [ DataProviderManager]: Script already loaded.
16-Oct-2018 13:06:43 Debug [     DatabaseManager]: UPDATING: DBSetting: Data Provider Manager Initialized = "True"
16-Oct-2018 13:06:43  Info [DatabaseMaintenanceM]: Updating Movie Information...
16-Oct-2018 13:06:44  Info [DatabaseMaintenanceM]: Removed 0 movie entries.
16-Oct-2018 13:06:44  Info [DatabaseMaintenanceM]: Updated 0 movie entries with default user setting.
16-Oct-2018 13:06:44  Info [         Translation]: Using language de-DE
16-Oct-2018 13:06:44  Warn [         Translation]: Cannot find translation file C:\ProgramData\Team MediaPortal\MediaPortal\Language\MovingPictures\de-DE.xml.  Failing back to English
16-Oct-2018 13:06:44 Debug [     DatabaseManager]: UPDATING: DBNode: ${DateAdded} (5)
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: UPDATING: DBNode: ${Actors} (411)
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: Burgess Meredith
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBNode: Burgess Meredith ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: Burt Young
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBNode: Burt Young ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: Carl Weathers
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:46 Debug [     DatabaseManager]: INSERTING: DBNode: Carl Weathers ()
16-Oct-2018 13:06:47 Debug [     DatabaseManager]: INSERTING: Joe Spinell
16-Oct-2018 13:06:47 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:47 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:47 Debug [     DatabaseManager]: INSERTING: DBNode: Joe Spinell ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: Sylvester Stallone
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBNode: Sylvester Stallone ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: Talia Shire
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBNode: Talia Shire ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: Thayer David
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBNode: Thayer David ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: Tony Burton
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBCriteria`1 ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBMovieNodeSettings ()
16-Oct-2018 13:06:48 Debug [     DatabaseManager]: INSERTING: DBNode: Tony Burton ()
16-Oct-2018 13:06:50  Info [  MovingPicturesCore]: Starting Background Processes...
16-Oct-2018 13:06:50  Info [UpdateArtworkProcess]: Starting artwork updater background process.
16-Oct-2018 13:06:50  Info [MediaInfoUpdateProce]: Starting background media info update process.
16-Oct-2018 13:06:50  Info [  MovingPicturesCore]: Building search index...
16-Oct-2018 13:06:50  Info [MediaInfoUpdateProce]: Background media info update process complete.
16-Oct-2018 13:06:50 Debug [     DatabaseManager]: UPDATING: DBSetting: Auto-approve on alternate titles = "True"
16-Oct-2018 13:06:51  Info [  MovingPicturesCore]: Search index built in: 00:00:00.4777190
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Prefer Folder Name for Movie Matching = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Always Group Files In The Same Folder = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable NFO Scanner = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Auto-Approve on NFO File IMDb Match = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Use Remote Control Filtering = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow user to delete files from the GUI context menu = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Allow Movie Rescan in GUI = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Enable Categories = "True"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Default Sort Field = "Title"
16-Oct-2018 13:06:51 Debug [     DatabaseManager]: UPDATING: DBSetting: Default Filter ID = "1"
16-Oct-2018 13:06:52 Debug [     DatabaseManager]: UPDATING: Birdsong - Gesang vom großen Feuer
16-Oct-2018 13:06:52 Debug [     DatabaseManager]: UPDATING: 2010: Moby Dick
16-Oct-2018 13:06:52  Info [       MovieImporter]: Started MovieImporter
16-Oct-2018 13:06:52  Info [       MovieImporter]: Initiating full scan on watch folders.
16-Oct-2018 13:06:52 Debug [     DatabaseManager]: UPDATING: DBSetting: Automatically Import Inserted DVDs = "True"
16-Oct-2018 13:06:52  Info [       MovieImporter]: Started watching '\\nas1\filme' (Network) - Path is now being monitored for changes.
16-Oct-2018 13:06:52  Info [       MovieImporter]: Started watching '\\nas2\filme' (Network) - Path is now being monitored for changes.
16-Oct-2018 13:06:52 Debug [        DBImportPath]: Scanning: \\nas1\filme
16-Oct-2018 13:06:52 Debug [DirectoryInfoExtensi]: Skipping directory \\nas1\filme\@Recently-Snapshot because it is flagged as a System folder.
16-Oct-2018 13:06:52 Debug [DirectoryInfoExtensi]: Skipping directory \\nas1\filme\@Recycle because it is flagged as a System folder.
16-Oct-2018 13:06:52 Debug [        DBImportPath]: Scanning: \\nas2\filme
16-Oct-2018 13:06:53 Debug [DirectoryInfoExtensi]: Skipping directory \\nas2\filme\@Recently-Snapshot because it is flagged as a System folder.
16-Oct-2018 13:06:53 Debug [DirectoryInfoExtensi]: Skipping directory \\nas2\filme\@Recycle because it is flagged as a System folder.
16-Oct-2018 13:06:53 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0097364?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:53 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0417750?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:53 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0246002?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:53 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1236440?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:53 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0119679?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1735311?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1430505?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0378157?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0807747?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Debug [   FileBasedResource]: Backdrop for "Der Kleine Lord" from the following URL is already loaded: http://image.tmdb.org/t/p/original/hREgoyvqKnCgNg7AJwRvDhuWX1G.jpg
16-Oct-2018 13:06:54 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0027893?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:54 Debug [   FileBasedResource]: Backdrop for "Ein Süßer Fratz" from the following URL is already loaded: http://image.tmdb.org/t/p/original/z75LQagZPdIaS1qf6iwmtfAljTR.jpg
16-Oct-2018 13:06:55 Debug [   FileBasedResource]: Backdrop for "Die Unerträgliche Leichtigkeit des Seins" from the following URL is already loaded: http://image.tmdb.org/t/p/original/wru4lC7aK4BYJzxAOoDI0vlfXL7.jpg
16-Oct-2018 13:06:55 Debug [   FileBasedResource]: Backdrop for "Die Unglaubliche Geschichte des Mr. C" from the following URL is already loaded: http://image.tmdb.org/t/p/original/pZ75L6epfBTvlzf4RuMGhAMDpt9.jpg
16-Oct-2018 13:06:55 Debug [   FileBasedResource]: Backdrop for "Das Singende, klingende Bäumchen" from the following URL is already loaded: http://image.tmdb.org/t/p/original/f7NDRCTZYrcRaLyUu0JOFdF3Ll0.jpg
16-Oct-2018 13:06:55 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0052199?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:55 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt4283654?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:55 Debug [   FileBasedResource]: Backdrop for "Ein Ungezähmtes Leben" from the following URL is already loaded: http://image.tmdb.org/t/p/original/e3K6KDvYg97ZCpiWMrArxfF1CZh.jpg
16-Oct-2018 13:06:55 Debug [   FileBasedResource]: Backdrop for "Die Unüblichen Verdächtigen" from the following URL is already loaded: http://image.tmdb.org/t/p/original/wbShYjD63LBbFTcZFATU5AolaXF.jpg
16-Oct-2018 13:06:56 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1509641?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:56 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1754137?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:56 Debug [   FileBasedResource]: Backdrop for "Der Brave Soldat Schwejk" from the following URL is already loaded: http://image.tmdb.org/t/p/original/7eQwibBfvE1cXM84nxQg2JZUKv4.jpg
16-Oct-2018 13:06:56 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt0053674?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:56 Debug [   FileBasedResource]: Backdrop for "Der Blaue Engel" from the following URL is already loaded: http://image.tmdb.org/t/p/original/5gZBGpKA2sHAfEdNZ2sAGsHqIAc.jpg
16-Oct-2018 13:06:57 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1996227?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:57 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1176933?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:57 Debug [   FileBasedResource]: Backdrop for "Glauben ist Alles!" from the following URL is already loaded: http://image.tmdb.org/t/p/original/RD1AhL66S6YDjPzabQEqU0WBp3.jpg
16-Oct-2018 13:06:57 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1236484?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:06:57 Debug [       MovieMeterAPI]: Attempting to create proxy...
16-Oct-2018 13:06:57 Debug [       MovieMeterAPI]: Proxy Created: UserAgent=MovingPictures/1.8.2.0, ApiKey=fps39a61pccchgw33bgkb10mdmj4vnzy
16-Oct-2018 13:06:57 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.StartSession(String apikey)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.getSessionKey()
16-Oct-2018 13:06:57 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.RetrieveByImdb(String sessionkey, String imdb_code)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.GetMovieMeterId(String imdbId)
16-Oct-2018 13:06:59 Debug [        DBImportPath]: New File: bhd-avultr-1080px-sample-002.mkv
16-Oct-2018 13:07:02 Error [          WebGrabber]: Connection failed: URL=http://www.ofdb.de/film/222750, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:03  Info [       MovieImporter]: SKIPPED: File='bhd-avultr-1080px-sample-002.mkv', Bytes=33742440, Reason='Sample detected'
16-Oct-2018 13:07:03  Info [     FileSyncProcess]: File maintenance started in the background.
16-Oct-2018 13:07:03  Info [DatabaseMaintenanceM]: Checking for invalid file entries in the database.
16-Oct-2018 13:07:04 Error [   FileBasedResource]: An error occured while processing 'C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\FullSize\{Birdsong.-.Gesang.vom.großen.Feuer-2012} [-908502488].jpg': Nicht genügend Arbeitsspeicher.
16-Oct-2018 13:07:04 Error [   FileBasedResource]: Failed downloading cover art for "Birdsong - Gesang vom großen Feuer": http://www.sratim.co.il
16-Oct-2018 13:07:04 Error [          WebGrabber]: Connection failed: URL=http://api.themoviedb.org/3/movie/tt1127876?api_key=cc25933c4094ca50635f94574491f320&language=en, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:04 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1127876?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:04 Error [          WebGrabber]: Connection failed: URL= http://ofdbgw.org/imdb2ofdb/tt1127876, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:04 Error [         ScraperNode]: Scraper Script XPATH parsing failed: Das Stammelement ist nicht vorhanden.
16-Oct-2018 13:07:05 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.StartSession(String apikey)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.getSessionKey()
16-Oct-2018 13:07:05 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.RetrieveByImdb(String sessionkey, String imdb_code)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.GetMovieMeterId(String imdbId)
16-Oct-2018 13:07:09 Error [          WebGrabber]: Connection failed: URL=http://www.ofdb.de/film/202671, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:10 Error [   FileBasedResource]: An error occured while processing 'C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\FullSize\{2010_.Moby.Dick-2010} [-908502488].jpg': Nicht genügend Arbeitsspeicher.
16-Oct-2018 13:07:10 Error [   FileBasedResource]: Failed downloading cover art for "2010: Moby Dick": http://www.sratim.co.il
16-Oct-2018 13:07:10 Error [          WebGrabber]: Connection failed: URL=http://api.themoviedb.org/3/movie/tt1334573?api_key=cc25933c4094ca50635f94574491f320&language=en, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:10 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1334573?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:10 Error [          WebGrabber]: Connection failed: URL= http://ofdbgw.org/imdb2ofdb/tt1334573, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:10 Error [         ScraperNode]: Scraper Script XPATH parsing failed: Das Stammelement ist nicht vorhanden.
16-Oct-2018 13:07:11 Error [          WebGrabber]: Connection failed: URL=http://api.themoviedb.org/3/movie/tt1334573?api_key=cc25933c4094ca50635f94574491f320&language=en, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:11 Error [          WebGrabber]: Connection failed: URL=http://webservice.fanart.tv/v3/movies/tt1334573?api_key=4f26c36ab3d97e3a4a0c1e081710e3a6, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:11  Info [UpdateArtworkProcess]: Background artwork updater process complete.
16-Oct-2018 13:07:21  Info [DatabaseMaintenanceM]: 0 file entries were marked for removal by the importer.
16-Oct-2018 13:07:21  Info [     FileSyncProcess]: File maintenance finished. (17,4 seconds)
16-Oct-2018 13:07:23 Debug [     DatabaseManager]: DELETING: Rocky
16-Oct-2018 13:07:23 Debug [     DatabaseManager]: delete from movie_info where ID = 5194
16-Oct-2018 13:07:24 Debug [     DatabaseManager]: Calling listeners for Rocky
16-Oct-2018 13:07:24  Warn [     DatabaseManager]: Tried to delete an uncommited object...
16-Oct-2018 13:07:24  Info [        DBLocalMedia]: Removing '\\nas2\filme\Rocky (1976)\Rocky (1976).mkv' and associated movie.
16-Oct-2018 13:07:24 Debug [     DatabaseManager]: DELETING: Rocky (1976).mkv
16-Oct-2018 13:07:24 Debug [     DatabaseManager]: delete from local_media where ID = 5227
16-Oct-2018 13:07:24 Debug [     DatabaseManager]: Calling listeners for Rocky (1976).mkv
16-Oct-2018 13:07:24  Info [       MovieImporter]: User reprocessing Rocky (1976).mkv
16-Oct-2018 13:07:24  Info [          NfoBuilder]: Parsing NFO file: \\nas2\filme\Rocky (1976)\Neues Textdokument.txt
16-Oct-2018 13:07:24 Debug [          NfoBuilder]: ImdbID Found: tt0075148
16-Oct-2018 13:07:27 Debug [         ImdbBuilder]: Lookup Imdbid=tt0075148: Failed.
16-Oct-2018 13:07:30 Debug [ DataProviderManager]: SEARCH: Title='Rocky', Provider='FilmInfo+', Version=1.5.0, Number of Results=1
16-Oct-2018 13:07:30 Debug [      MovieSignature]: MATCHING: 'rocky' WITH: 'Rocky' RESULT: TitleScore=0, YearScore=0, ImdbMatch=True, AlternateTitleUsed=False, AlternateTitle='', AutoApprove=True
16-Oct-2018 13:07:30 Debug [       MovieImporter]: Built MediaSignature: Path= "\\nas2\filme\Rocky (1976)", Folder= "Rocky (1976)", File= "Rocky (1976).mkv", Keywords= "Rocky", Title= "Rocky", Year= 1976, DiscId= "", MovieHash= "27954ee92b134341", ImdbId= "tt0075148"
16-Oct-2018 13:07:30  Info [       MovieImporter]: Auto-approved Rocky (1976).mkv as "Rocky" (1976)
16-Oct-2018 13:07:30  Info [       MovieImporter]: Retrieving details for "Rocky"
16-Oct-2018 13:07:30 Debug [     DatabaseManager]: INSERTING: Rocky (1976).mkv
16-Oct-2018 13:07:30  Info [         ScraperNode]: #############################################
16-Oct-2018 13:07:30 Debug [         ScraperNode]: # FilmInfo+ ### Begin of Detailssearch for Rocky (1976, tt0075148)
16-Oct-2018 13:07:30  Info [         ScraperNode]: SE: 
16-Oct-2018 13:07:30  Info [         ScraperNode]: SE: 
16-Oct-2018 13:07:30  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) OFDb.de begin...
16-Oct-2018 13:07:30 Debug [         ScraperNode]: # FilmInfo+ ### (Rocky) OFDB Id: 895
16-Oct-2018 13:07:30  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) OFDb ID found: 895
16-Oct-2018 13:07:30  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) trying Ofdb.de details backup...
16-Oct-2018 13:07:31  Info [         ScraperNode]: # FilmInfo+ ### Summary obtained from OFDb.de...
16-Oct-2018 13:07:31  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) loading IMDB details-page (tt0075148)
16-Oct-2018 13:07:32  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) Parsed Title is the Original Title (Rocky)
16-Oct-2018 13:07:32  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) Runtime: 120 min
16-Oct-2018 13:07:32  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) Score: 8,1 from 452541 votes
16-Oct-2018 13:07:32  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) loading Tagline (Meet the "Italian Stallion": a small-time guy with big-time guts who yearns to be a hero...just once!)
16-Oct-2018 13:07:32  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) IMDB Studios: |Chartoff-Winkler Productions
16-Oct-2018 13:07:33  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) IMDB Keywords: |boxer|1970s|boxing|training|philadelphia pennsylvania|hometown hero|protective male|strongman|boxer hero|showdown
16-Oct-2018 13:07:33  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) loading IMDB credits-page
16-Oct-2018 13:07:34 Debug [         ScraperNode]: # FilmInfo+ ### (Rocky) loading IMDB Actors
16-Oct-2018 13:07:34  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) loading Director(s)
16-Oct-2018 13:07:34  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) loading Writer(s)
16-Oct-2018 13:07:35  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) BEGIN SPECIAL MOVIES CHECK
16-Oct-2018 13:07:35  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) checking FI+ Online DB for tt0075148...
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) FI+ Online DB entry for tt0075148:  (Rocky [01])
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) skipping autosort for tt0075148...
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### (Rocky) END SPECIAL MOVIES CHECK
16-Oct-2018 13:07:36  Info [         ScraperNode]: ################################ FilmInfo+ Debug INFO
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### filename          >>>> Rocky (1976)
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### imdb id           >>>> tt0075148
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### ofdb id           >>>> 895
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### tmdb id           >>>> 
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### movie.orgtitle    >>>> 
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### movie.title       >>>> Rocky
16-Oct-2018 13:07:36  Info [         ScraperNode]: # FilmInfo+ ### movie.sortby      >>>> Rocky 01
16-Oct-2018 13:07:36  Info [         ScraperNode]: ################################ FilmInfo+ Debug INFO
 

hasengrube

Portal Member
July 28, 2008
23
12
Home Country
Germany Germany
Part 2 - was to long :)

Code:
16-Oct-2018 13:07:36 Debug [ DataProviderManager]: UPDATE: Title='Rocky', Provider='FilmInfo+', Version=1.5.0, Result=SUCCESS
16-Oct-2018 13:07:36 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.StartSession(String apikey)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.getSessionKey()
16-Oct-2018 13:07:37 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.RetrieveByImdb(String sessionkey, String imdb_code)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.GetMovieMeterId(String imdbId)
16-Oct-2018 13:07:39 Error [          WebGrabber]: Connection failed: URL=http://www.ofdb.de/film/895, Status=NotFound, Description=Not Found.
16-Oct-2018 13:07:41 Error [   FileBasedResource]: An error occured while processing 'C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\FullSize\{Rocky-1976} [-908502488].jpg': Nicht genügend Arbeitsspeicher.
16-Oct-2018 13:07:41 Error [   FileBasedResource]: Failed downloading cover art for "Rocky": http://www.sratim.co.il
16-Oct-2018 13:07:41  Info [   FileBasedResource]: Added resized cover art for "Rocky" from: http://image.tmdb.org/t/p/original/i5xiwdSsrecBvO7mIfAJixeEDSg.jpg
16-Oct-2018 13:07:42  Info [   FileBasedResource]: Added resized cover art for "Rocky" from: http://image.tmdb.org/t/p/original/5lSXtAs84isLloQUwDhYehpKHvu.jpg
16-Oct-2018 13:07:42  Info [   FileBasedResource]: Added resized cover art for "Rocky" from: http://image.tmdb.org/t/p/original/gQnnLgijZbNu0neyfkFoZGhHw96.jpg
16-Oct-2018 13:07:42  Info [         DBMovieInfo]: Added backdrop for 'Rocky' from: C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Backdrops\FullSize\{Rocky-1976} [-1982023971].jpg
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBUserMovieSettings ()
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: Rocky
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='tt0075148', provider='FilmInfo+']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='Scope.dk']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='Kinopoisk.ru']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='mymovies.it']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='FilmWeb.pl']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='Alpacine.com']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='moviemeter.nl']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='kvikmyndir.is']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='sratim.co.il']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='Daum']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Rocky',  identifier='???', provider='themoviedb.org']
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: UPDATING: Rocky
16-Oct-2018 13:07:42  Info [       MovieImporter]: Retrieving media information for: Rocky
16-Oct-2018 13:07:42 Debug [        DBLocalMedia]: Updating media info for '\\nas2\filme\Rocky (1976)\Rocky (1976).mkv'
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: InspectingMedia: \\nas2\filme\Rocky (1976)\Rocky (1976).mkv
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: FrameRate: 23,976
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: VideoBitRate: 8776130
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: VideoCodec: v_mpeg4/iso/avc
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: HasSubtitles: True
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: NumSubtitles: 1
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Is3D: False
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: MultiViewCount: 0
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: ScanType: progressive
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: IsInterlaced: False
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Width: 1280
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Height: 672
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioChannels: 6
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioBitRate: 1509000
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioSampleRate: 48000
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AspectRatio: widescreen
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioCodec: dts
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioFormatProfile:
16-Oct-2018 13:07:42 Debug [    MediaInfoWrapper]: MediaInfoWrapper: FileSize: 10102438440
16-Oct-2018 13:07:42 Debug [     DatabaseManager]: UPDATING: Rocky (1976).mkv
16-Oct-2018 13:07:42  Info [       MovieImporter]: Added "Rocky" (1976).
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: DELETING: Schindlers Liste
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: delete from movie_info where ID = 3140
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: Calling listeners for Schindlers Liste
16-Oct-2018 13:07:57  Warn [     DatabaseManager]: Tried to delete an uncommited object...
16-Oct-2018 13:07:57  Info [        DBLocalMedia]: Removing '\\nas2\filme\Schindlers Liste (1993)\Schindlers Liste (1993).mkv' and associated movie.
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: DELETING: Schindlers Liste (1993).mkv
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: delete from local_media where ID = 3163
16-Oct-2018 13:07:57 Debug [     DatabaseManager]: Calling listeners for Schindlers Liste (1993).mkv
16-Oct-2018 13:07:57  Info [       MovieImporter]: User reprocessing Schindlers Liste (1993).mkv
16-Oct-2018 13:07:58  Info [          NfoBuilder]: Parsing NFO file: \\nas2\filme\Schindlers Liste (1993)\Neues Textdokument.txt
16-Oct-2018 13:07:58 Debug [          NfoBuilder]: ImdbID Found: tt0108052
16-Oct-2018 13:08:00 Debug [         ImdbBuilder]: Lookup Imdbid=tt0108052: Failed.
16-Oct-2018 13:08:02 Debug [ DataProviderManager]: SEARCH: Title='Schindlers Liste', Provider='FilmInfo+', Version=1.5.0, Number of Results=1
16-Oct-2018 13:08:02 Debug [      MovieSignature]: MATCHING: 'schindlers liste' WITH: 'Schindlers Liste' RESULT: TitleScore=0, YearScore=0, ImdbMatch=True, AlternateTitleUsed=False, AlternateTitle='', AutoApprove=True
16-Oct-2018 13:08:02 Debug [       MovieImporter]: Built MediaSignature: Path= "\\nas2\filme\Schindlers Liste (1993)", Folder= "Schindlers Liste (1993)", File= "Schindlers Liste (1993).mkv", Keywords= "Schindlers Liste", Title= "Schindlers Liste", Year= 1993, DiscId= "", MovieHash= "0b3d82ff07d5a133", ImdbId= "tt0108052"
16-Oct-2018 13:08:02  Info [       MovieImporter]: Auto-approved Schindlers Liste (1993).mkv as "Schindlers Liste" (1993)
16-Oct-2018 13:08:02  Info [       MovieImporter]: Retrieving details for "Schindlers Liste"
16-Oct-2018 13:08:02 Debug [     DatabaseManager]: INSERTING: Schindlers Liste (1993).mkv
16-Oct-2018 13:08:02  Info [         ScraperNode]: #############################################
16-Oct-2018 13:08:02 Debug [         ScraperNode]: # FilmInfo+ ### Begin of Detailssearch for Schindlers Liste (1993, tt0108052)
16-Oct-2018 13:08:02  Info [         ScraperNode]: SE:
16-Oct-2018 13:08:02  Info [         ScraperNode]: SE:
16-Oct-2018 13:08:02  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) OFDb.de begin...
16-Oct-2018 13:08:02 Debug [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) OFDB Id: 1457
16-Oct-2018 13:08:02  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) OFDb ID found: 1457
16-Oct-2018 13:08:02  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) trying Ofdb.de details backup...
16-Oct-2018 13:08:03  Info [         ScraperNode]: # FilmInfo+ ### Summary obtained from OFDb.de...
16-Oct-2018 13:08:03  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading IMDB details-page (tt0108052)
16-Oct-2018 13:08:04  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) Original Title is Schindler's List
16-Oct-2018 13:08:04  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) Runtime: 195 min
16-Oct-2018 13:08:04  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) Score: 8,9 from 1034601 votes
16-Oct-2018 13:08:04  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading Tagline (The List Is Life.)
16-Oct-2018 13:08:04  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) IMDB Studios: |Universal Pictures|Amblin Entertainment
16-Oct-2018 13:08:05  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) IMDB Keywords: |accountant|champagne|villa|womanizer|full frontal female nudity|soap|female pubic hair|shaving|gratitude|manicure
16-Oct-2018 13:08:05  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading IMDB credits-page
16-Oct-2018 13:08:06 Debug [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading IMDB Actors
16-Oct-2018 13:08:06  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading Director(s)
16-Oct-2018 13:08:06  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) loading Writer(s)
16-Oct-2018 13:08:06  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) BEGIN SPECIAL MOVIES CHECK
16-Oct-2018 13:08:06  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) checking FI+ Online DB for tt0108052...
16-Oct-2018 13:08:07  Info [         ScraperNode]: # FilmInfo+ ### (Schindlers Liste) END SPECIAL MOVIES CHECK
16-Oct-2018 13:08:07  Info [         ScraperNode]: ################################ Sortby begin
16-Oct-2018 13:08:08  Info [         ScraperNode]: ################################ FilmInfo+ Debug INFO
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### filename          >>>> Schindlers Liste (1993)
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### imdb id           >>>> tt0108052
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### ofdb id           >>>> 1457
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### tmdb id           >>>>
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### movie.orgtitle    >>>> Schindler's List
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### movie.title       >>>> Schindlers Liste
16-Oct-2018 13:08:08  Info [         ScraperNode]: # FilmInfo+ ### movie.sortby      >>>> Schindlers Liste
16-Oct-2018 13:08:08  Info [         ScraperNode]: ################################ FilmInfo+ Debug INFO
16-Oct-2018 13:08:08 Debug [ DataProviderManager]: UPDATE: Title='Schindlers Liste', Provider='FilmInfo+', Version=1.5.0, Result=SUCCESS
16-Oct-2018 13:08:08 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.StartSession(String apikey)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.getSessionKey()
16-Oct-2018 13:08:08 Error [       MovieMeterAPI]: CookComputing.XmlRpc.XmlRpcIllFormedXmlException: Response from server does not contain valid XML. ---> System.Xml.XmlException: Unerwartetes Token 'src'. Erwartet wurde das Token '='. Zeile 15, Position 19.
   bei System.Xml.XmlTextReaderImpl.Throw(Exception e)
   bei System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
   bei System.Xml.XmlTextReaderImpl.ThrowUnexpectedToken(String expectedToken1, String expectedToken2)
   bei System.Xml.XmlTextReaderImpl.ParseAttributes()
   bei System.Xml.XmlTextReaderImpl.ParseElement()
   bei System.Xml.XmlTextReaderImpl.ParseElementContent()
   bei System.Xml.XmlTextReaderImpl.Read()
   bei System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   bei System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   bei System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   bei System.Xml.XmlDocument.Load(XmlReader reader)
   bei System.Xml.XmlDocument.Load(Stream inStream)
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   --- Ende der internen Ausnahmestapelüberwachung ---
   bei CookComputing.XmlRpc.XmlRpcSerializer.DeserializeResponse(Stream stm, Type svcType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.ReadResponse(XmlRpcRequest req, WebResponse webResp, Stream respStm, Type returnType)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(Object clientObj, MethodInfo mi, Object[] parameters)
   bei CookComputing.XmlRpc.XmlRpcClientProtocol.Invoke(MethodInfo mi, Object[] Parameters)
   bei XmlRpcProxy96ab3c28-4219-451b-91a3-742e2db41bf7.RetrieveByImdb(String sessionkey, String imdb_code)
   bei MediaPortal.Plugins.MovingPictures.DataProviders.MovieMeter.MovieMeterAPI.GetMovieMeterId(String imdbId)
16-Oct-2018 13:08:10 Error [          WebGrabber]: Connection failed: URL=http://www.ofdb.de/film/1457, Status=NotFound, Description=Not Found.
16-Oct-2018 13:08:11 Error [   FileBasedResource]: An error occured while processing 'C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Covers\FullSize\{Schindlers.Liste-1993} [-908502488].jpg': Nicht genügend Arbeitsspeicher.
16-Oct-2018 13:08:11 Error [   FileBasedResource]: Failed downloading cover art for "Schindlers Liste": http://www.sratim.co.il
16-Oct-2018 13:08:11  Info [   FileBasedResource]: Added resized cover art for "Schindlers Liste" from: http://image.tmdb.org/t/p/original/lExWRUDOkb0Oe7e5NCwLrTKUWVG.jpg
16-Oct-2018 13:08:11  Info [   FileBasedResource]: Added resized cover art for "Schindlers Liste" from: http://image.tmdb.org/t/p/original/8NIZqSrpdUHbaKsnUT33tZxowQ7.jpg
16-Oct-2018 13:08:12  Info [   FileBasedResource]: Added resized cover art for "Schindlers Liste" from: http://image.tmdb.org/t/p/original/iEKJS8L62A0bgQNfr18Y6DqD7Ie.jpg
16-Oct-2018 13:08:12  Info [         DBMovieInfo]: Added backdrop for 'Schindlers Liste' from: C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\MovingPictures\Backdrops\FullSize\{Schindlers.Liste-1993} [-308801500].jpg
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBUserMovieSettings ()
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: Schindlers Liste
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='tt0108052', provider='FilmInfo+']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='Scope.dk']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='Kinopoisk.ru']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='mymovies.it']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='FilmWeb.pl']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='Alpacine.com']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='moviemeter.nl']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='kvikmyndir.is']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='sratim.co.il']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='Daum']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: INSERTING: DBSourceMovieInfo [title='Schindlers Liste',  identifier='???', provider='themoviedb.org']
16-Oct-2018 13:08:12 Debug [     DatabaseManager]: UPDATING: Schindlers Liste
16-Oct-2018 13:08:12  Info [       MovieImporter]: Retrieving media information for: Schindlers Liste
16-Oct-2018 13:08:12 Debug [        DBLocalMedia]: Updating media info for '\\nas2\filme\Schindlers Liste (1993)\Schindlers Liste (1993).mkv'
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: InspectingMedia: \\nas2\filme\Schindlers Liste (1993)\Schindlers Liste (1993).mkv
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: FrameRate: 23,976
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: VideoBitRate: 17850000
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: VideoCodec: v_mpeg4/iso/avc
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: HasSubtitles: True
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: NumSubtitles: 9
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Is3D: False
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: MultiViewCount: 0
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: ScanType: progressive
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: IsInterlaced: False
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Width: 1920
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: Height: 1040
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioChannels: 6
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioBitRate: 768000
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioSampleRate: 48000
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AspectRatio: widescreen
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioCodec: dts
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: AudioFormatProfile:
16-Oct-2018 13:08:13 Debug [    MediaInfoWrapper]: MediaInfoWrapper: FileSize: 29498462542
16-Oct-2018 13:08:13 Debug [     DatabaseManager]: UPDATING: Schindlers Liste (1993).mkv
16-Oct-2018 13:08:13  Info [       MovieImporter]: Added "Schindlers Liste" (1993).
16-Oct-2018 13:08:25  Info [       MovieImporter]: Shutting Down Media Scanner Threads...
16-Oct-2018 13:08:25  Info [       MovieImporter]: Shutting Down Path Scanner Thread...
16-Oct-2018 13:08:25  Info [       MovieImporter]: Stopped MovieImporter
16-Oct-2018 13:08:26 Debug [     DatabaseManager]: UPDATING: DBSetting: Width = "1497"
16-Oct-2018 13:08:26 Debug [     DatabaseManager]: UPDATING: DBSetting: Height = "847"
16-Oct-2018 13:08:26 Debug [     DatabaseManager]: UPDATING: DBSetting: X = "116"
16-Oct-2018 13:08:26 Debug [     DatabaseManager]: UPDATING: DBSetting: Y = "164"
16-Oct-2018 13:08:27  Info [  MovingPicturesCore]: Stopping Background Processes...
16-Oct-2018 13:08:27  Info [     DatabaseManager]: Closing database connection...
16-Oct-2018 13:08:27  Info [     DatabaseManager]: Successfully closed Database: C:\ProgramData\Team MediaPortal\MediaPortal\Database\movingpictures.db3
16-Oct-2018 13:08:27  Info [  MovingPicturesCore]: Plugin Closed
 

Users who are viewing this thread

Top Bottom