Scrapers: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>DonJ
No edit summary
>Gamester17
No edit summary
Line 1: Line 1:
<div class="messagebox merge">[[Image:Merge-arrow.gif|left]] It has been suggested that this article or section be merged into ''[[:{{NAMESPACE}}:HOW-TO Write Media Info Scrapers (introduction)|How To Write Media Info Scrapers]]''. ([[{{{2|:{{NAMESPACE}} talk:Scraper.xml}}}|Discuss]])</div>
{{XBMC faq toc Inline}}
{{XBMC faq toc Inline}}
Scrapers (also outside the XBMC community more commonly referred to as "''[http://en.wikipedia.org/wiki/Web_scraper web scrapers]''" or metadata "''[http://en.wikipedia.org/wiki/Importer_(computing) importers]]''") are used by XBMC Media Center to go online to automatically retrieve meta data information and artwork ([[thumbnails]]poster/cover/[[fanart]]) from websites for Games, Music, Music, Videos, Movies, and TV Shows. This meta data information and artwork is then used for the XBMC program, music, and video [[Library|libraries]].
__TOC__
__TOC__
__NOEDITSECTION__
Scrapers are used by XBMC Media Center to automatically retrieve poster/cover/[[FanArt]] artwork and meta data information from webpages for Music, Music, Videos, Movies, and TV Shows. This artwork and meta data information is then used for the XBMC [[Library|libraries]].


Until version 2.0 of XBMC the only available scraper was the [[IMDB|IMDb]] scraper. In later versions it has become possible to create custom scrapers to collect data from almost any webpage which list information in a consistent way, and today XBMC comes with many scrapers for several languages and sites.  
=Introduction to Scrapers=
Until version 2.0 of XBMC the only available web scraper was the [[IMDB|IMDb]] importer. In later versions it has become possible to create custom scrapers to collect data from almost any webpage which list information in a consistent way, and today XBMC comes with many scrapers for several languages and sites.  
   
   
To learn more about actually using scrapers in XBMC, please look at:
To learn more about actually using scrapers in XBMC, please look at:
Line 14: Line 14:
*[[HOW-TO Write Media Info Scrapers (the complete dummies guide)]]
*[[HOW-TO Write Media Info Scrapers (the complete dummies guide)]]


XBMC come with several scrapers for movies, TV shows and music videos which are stored in xbmc\system\scrapers\video. They are just specially formatted [http://en.wikipedia.org/wiki/XML XML] files.
XBMC come with several scrapers for Movies, TV shows and Music Videos which are stored in xbmc\system\scrapers\video. They are just specially formatted [http://en.wikipedia.org/wiki/XML XML] files.


The scraper XML file consists of text processing operations that work over a set of text buffers, labeled $$1 to $$20.  The basic operation is RegExp. A single RegExp is a text processing command that takes text in buffer 'input', runs <expression> on it... formats the matches with 'output' and places (or appends) the result in buffer 'dest'.  A scraper XML file must use RegExps to implement functions that XBMC will call such as GetSearchResults.
The scraper XML file consists of text processing operations that work over a set of text buffers, labeled $$1 to $$20.  The basic operation is RegExp. A single RegExp is a text processing command that takes text in buffer 'input', runs <expression> on it... formats the matches with 'output' and places (or appends) the result in buffer 'dest'.  A scraper XML file must use RegExps to implement functions that XBMC will call such as GetSearchResults.
Line 20: Line 20:
== Prerequisites ==
== Prerequisites ==
* Knowledge of [[Regular Expression (RegEx) Tutorial|regular expressions]]
* Knowledge of [[Regular Expression (RegEx) Tutorial|regular expressions]]
* Basic XML syntax knowledge.
* Basic [http://en.wikipedia.org/wiki/XML XML] syntax knowledge.


== Layout ==
== Layout ==
To see a full scraper, see the [http://xbmc.svn.sourceforge.net/viewvc/xbmc/trunk/XBMC/system/scrapers/video/imdb.xml?view=markup imdb reference implementation] in SVN.
To see a full scraper, see the [http://xbmc.svn.sourceforge.net/viewvc/xbmc/trunk/XBMC/system/scrapers/video/imdb.xml?view=markup IMDb reference implementation] in SVN.
The general layout of scraper.xml is as follows:
The general layout of scraper.xml is as follows:
<xml>
<xml>
Line 254: Line 254:
e.g. for <xml><url function="CustomFunction">http://www.imdb.com/title/tt0452624/</url></xml> variable 1 would hold the content of "http://www.imdb.com/title/tt0452624/".
e.g. for <xml><url function="CustomFunction">http://www.imdb.com/title/tt0452624/</url></xml> variable 1 would hold the content of "http://www.imdb.com/title/tt0452624/".


 
[[category:How To|Scraper]]
[[Category:Inner Workings]]
[[Category:Inner Workings]]
[[category:Development]]
[[category:Development]]

Revision as of 08:42, 11 June 2009

Template:XBMC faq toc Inline

Scrapers (also outside the XBMC community more commonly referred to as "web scrapers" or metadata "importers]") are used by XBMC Media Center to go online to automatically retrieve meta data information and artwork (thumbnailsposter/cover/fanart) from websites for Games, Music, Music, Videos, Movies, and TV Shows. This meta data information and artwork is then used for the XBMC program, music, and video libraries.

Introduction to Scrapers

Until version 2.0 of XBMC the only available web scraper was the IMDb importer. In later versions it has become possible to create custom scrapers to collect data from almost any webpage which list information in a consistent way, and today XBMC comes with many scrapers for several languages and sites.

To learn more about actually using scrapers in XBMC, please look at:

And to learn more about creating scrapers, please look at:

XBMC come with several scrapers for Movies, TV shows and Music Videos which are stored in xbmc\system\scrapers\video. They are just specially formatted XML files.

The scraper XML file consists of text processing operations that work over a set of text buffers, labeled $$1 to $$20. The basic operation is RegExp. A single RegExp is a text processing command that takes text in buffer 'input', runs <expression> on it... formats the matches with 'output' and places (or appends) the result in buffer 'dest'. A scraper XML file must use RegExps to implement functions that XBMC will call such as GetSearchResults.

Prerequisites

Layout

To see a full scraper, see the IMDb reference implementation in SVN. The general layout of scraper.xml is as follows: <xml> <scraper>

  <NfoUrl>
     <RegExp>
        <expression></expression>
     </RegExp>
  </NfoUrl>
  <CreateSearchUrl>
     <RegExp>
        <expression></expression>
     </RegExp>
  </CreateSearchUrl>
  <GetSearchResults>
     <RegExp>
        <expression></expression>
     </RegExp>
  </GetSearchResults>
  <GetDetails>
     <RegExp>
        <expression></expression>
     </RegExp>
  </GetDetails>
  <CustomFunction>
     <RegExp>
        <expression></expression>
     </RegExp>
  </CustomFunction>

</scraper> </xml> If RegExp tags are being nested they are being worked through in a lifo manner.

XBMC/Scraper Interaction

Scraperinterface.png

XML character entity references

Unlike traditional HTML with its large range of character entity references, in XML there are only five predefined character entity references. These are used to escape characters that are markup sensitive in certain contexts:

  • &amp; → &
  • &lt; → <
  • &gt; → >
  • &quot; → "
  • &apos; → '

This means that in the regular expressions you actually have to use entities instead of the actual characters.

For example, the following would be wrong: <xml> <CreateSearchUrl dest="3">

  <RegExp input="$$1" output="http://www.example.com/search.php?title=\1&new=true" dest="3">
     <expression noclean="1"> <a href="example">.[^<]* </expression>
  </RegExp>

</CreateSearchUrl> </xml> Use instead: <xml> <CreateSearchUrl dest="3">

  <RegExp input="$$1" output="http://www.example.com/search.php?title=\1&new=true" dest="3">
     <expression noclean="1"> <a href="example">.[^<]* </expression>
  </RegExp>

</CreateSearchUrl> </xml> If you open the scraper XML file in a web browser the actual characters are shown for the entities, be careful if you cut&paste.

Regular Expression Engine

There are a few things to note about the regular expression engine:

  • Laziness doesn't work. e.g. <xml>.*?</xml> (For a workaround see http://www.regular-expressions.info/repeat.html An Alternative to Laziness)
  • \w or \d does not work, use [a-zA-Z] and [0-9] instead
  • Regular expressions are case sensitive
  • A dot matches a new line
  • Beginning of line ^ and end of line $ does not seem to work

Tags in Detail

<scraper>

<xml><scraper name="jaded video" content="movies" thumb="jaded.jpg" framework="1.0" date="2009-05-22"></scraper></xml> The sole purpose of this tag is to define the name, type and thumbnail of scraper.

  • name: The name of the scraper
  • content: movies/tvshows/mvid
  • thumb: relative path to a scraper thumbnail
  • framework: Scraper Framework being used. The latest is 1.0 (as used in XBMC 9.04 Babylon)
  • date: Date this version of the scraper has been released in ISO 8601

<url></url>

This is an output string that the scraper.xml generates and passes to XBMC. Url tags can have the following attributes:

Example:

<url spoof="http://www.google.com">http://akas.imdb.com/find?s=tt;q=\1</url>

Every url returned from the scrapers has to be inside an url tag. An exception is CreateSearchUrl where the url tag is optional.

<RegExp><expression></RegExp>

A RegExp is a text processing command that takes text in buffer 'input', runs <expression> on it... formats the matches with 'output' and places the result in buffer 'dest'

<xml><RegExp conditional="override" input="$$5" output="<details>\1</details>" dest="3"> <expression repeat="yes" noclean="1" trim="1" clear="no">([a-zA-Z][^,]*)</expression> </RegExp></xml>

<expression>

The <expression> tag holds the regular expression. Here it is: <xml>([a-zA-Z][^,]*)whatever (.[^-]*)</xml> The regular expression matches are stored in \1, \2, ... , \9 and can be used in the output attribute of the RegExp tag. If the expression is blank, the input buffer contents is put into match \1.

  • repeat="yes/no": Repeat the regular expression.
  • noclean="1,..,9": By default html tags and special characters are stripped from the matches \1, ..., \9. By setting noclean="1, ..., 9" you can stop this behavior.
  • trim="1,..,9": Trim white spaces from the end of matches 1 to 9.
  • clear=yes/no": If set to yes, if the expression fails dest is cleared

<RegExp>

The RegExp tag sets the input which will is being searched by the regular expression

  • input="$$x" where x=1 to 9: The input variable holds the text that will get searched by the regular expression
  • output: Defines how the output should look like. Here you can use \1, ..., \9 which represent regular expression matches.
  • dest="x" where x=1 to 9: The variable to which the output should be stored to. If clear is true, its previous content will get cleared if the expression fails.
  • conditonal="<condition>": A condition that must resolve to TRUE for the particular RegExp to be run. Currently the only available condition is "override", which is set based on the Language Override setting in the scraper.

<NfoUrl>

It's the task of NfoUrl to return the url for GetDetails from an nfo.
Inputs:

  • $$1: Variable 1 holds the content of the Nfo file.

<CreateSearchUrl>

<xml> <CreateSearchUrl dest="3"> <RegExp input="$$1" output="http://akas.imdb.com/find?s=tt;q=\1" dest="3"> <expression noclean="1"></expression> </RegExp> </CreateSearchUrl> </xml>

Inputs:

  • $$1: Variable 1 holds the search string. This is usually the filename stripped by some words e.g. DVDRip, Xvid ..

The purpose of this function is to create a variable which will hold the url of the search result page.

  • dest="x" where x=1 to 9: Variable x shall hold the url of the search result page.

In the example above <CreateSearchUrl dest="3"> means that variable 3 should hold the search results page url. The Regular expression tag searches threw variable 1 and stores the searchstring in variable 3. Since no expression is specified the entire variable $$1 is matched and stored in \1. Since this does not contain html tags it is not necessary to clean \1.

<GetSearchResults>

<xml> <GetSearchResults dest="8"> <RegExp input="$$5" output="<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?><results>\1</results>" dest="8"> <RegExp input="$$1" output="<entity><title>\1</title><url>http://jadedvideo.com/yz_resultJAVA.asp?PRODUCT_ID=\2</url></entity>" dest="5"> <expression repeat="yes"><font color="#000FF">(.[^"]*)</big>.[^"]*SKU: ([0-9]+)<br></expression> </RegExp> <expression noclean="1"></expression> </RegExp> </GetSearchResults>

</xml> Inputs:

  • $$1: Variable 1 hold the content of the search URL returned to CreateSearchUrl.

It is the task of this function to return a list of search results in the following format: <xml> <?xml version="1.0" encoding="iso-8859-1" standalone="yes"?> <results>

  <entity>
     <title></title>
     <url></url>
     <url></url>
  </entity>
  <entity>
     <title></title>
     <url></url>
     <url></url>
  </entity>

</results></xml>

There can be up to 9 <url> tags within each movie tag. The webpages specified in the url tags should hold detailed information about the movie/tv series/mvid. In most cases one url will be enough. The url tag can have the argument function="nameoffunction" e.g. <xml><url function="CustomFunction">theurl</url></xml> In this case other then GetDetails, "CustomFunction" will be executed after GetDetails has run.

When using the scraper the user will be asked in XBMC to select one of the movies from the list which was returned by this function. The one which gets selected will be processed from there on.

<GetDetails>

Here the actual data which is being saved in the database is being retrieved. For movies the following format should be returned:

<xml> <details> <title></title> <year></year> <director></director> <top250></top250> <mpaa></mpaa> <tagline></tagline> <runtime></runtime> <thumb></thumb> <credits></credits> <rating></rating> <votes></votes> <genre></genre> <actor> <name></name> <role></role> </actor> <outline></outline> <plot></plot> </details> </xml>

Inputs:

  • $$x where x= 1 to 9: Variable x holds the content of the URL specified in the <url> tag number x in GetSearchResults.

e.g. if there are two <url> tags (without argument function) returned by GetSearchResults. Variable 1 will contain the content of the first url tag and variable 2 the content of the second url tag.

<thumb>:
The thumb tag can have a spoof argument (like <url>). This feature can be used to circumvent direct linking protections. The firefox extensions refspoof http://refspoof.mozdev.org/ can help in testing if referrer spoofing works. (see from http://xbmc.svn.sourceforge.net/viewvc/xbmc/trunk/XBMC/system/scrapers/video/adultcdmovies.xml?view=markup for an example)

Multiple tags:

  • The following tags can appear more than once in <details>:
    • genre
    • credits
    • director
    • actor

<CustomFunction>

This function should return an xml similar to GetDetails. For tags that can have multiple values the values of CustomFunction and GetDetails are combined (genre etc). For the rest the last CustomFunction will take precedence.

Inputs:

  • $$1: Variable 1 holds the content of the URL specified in the url tag with the function="CustomFunction" argument.

e.g. for <xml><url function="CustomFunction">http://www.imdb.com/title/tt0452624/</url></xml> variable 1 would hold the content of "http://www.imdb.com/title/tt0452624/".