diff options
author | louis <louis.braun@gmx.de> | 2014-04-12 17:34:13 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-04-12 17:34:13 +0200 |
commit | 9da4912be1d7f27d2d6eb717a7993b5a0f2924f6 (patch) | |
tree | bdd3eafa5651032d513e92ebee5d5928b58fcc5f | |
parent | 801610d2595720208ed344cdb8ae2cb997d97e71 (diff) | |
download | vdr-plugin-scraper2vdr-9da4912be1d7f27d2d6eb717a7993b5a0f2924f6.tar.gz vdr-plugin-scraper2vdr-9da4912be1d7f27d2d6eb717a7993b5a0f2924f6.tar.bz2 |
Updated README
-rw-r--r-- | README | 44 | ||||
-rw-r--r-- | scraper2vdr.c | 4 |
2 files changed, 42 insertions, 6 deletions
@@ -34,10 +34,14 @@ To run the plugin the following libaries have to be installed: - uuid-dev - imagemagick or graphicksmagick -Installation and configuration ------------------------------- +Installation, configuration and Usage +---------------------------------------- -Just install the plugin depending on your used distribution. During VDR +To download the plugin from the GIT repository, do a + +git clone http://projects.vdr-developer.org/git/vdr-plugin-scraper2vdr.git/ + +Install the plugin depending on your used distribution. During VDR startup the following options can be set: -i <IMAGEDIR>, --imagedir=<IMAGEDIR> Set directory where images are stored @@ -62,6 +66,40 @@ are not missed. The recording information is then written to the database in time before the related and already reliably scraped event entry is deleted from the database. +Format of scrapinfo file +------------------------ + +If a recorded show is not correctly scraped because of whatever, it is +possible to place a file called scrapinfo into the recordings folder to +set the IDs manually. To get the IDs, you have to check + +http://www.themoviedb.org/ + +for movies and + +http://www.thetvdb.com/ + +for Series. The format of the scrapinfo file for series is: + +series +id = <series id from tvdb.com> +episode = <episode id from tvdb.com> + +The episode line can also be empty, then only the series without +information for the episode is scraped. + +For series it is possible to place one common scrapinfo file +for the whole series. For that the scrapinfo file has to be placed +two folder levels higher relatively to the recording directory. +If a recording is placed in /video/series/episode/<date>.rec/ +then the scrapinfo file has to be placed in /video/series/ + +For movies the format is + +movie +id = <movie id from moviedb.org> +episode = <episode id from tvdb.com> + Service Interface ----------------- diff --git a/scraper2vdr.c b/scraper2vdr.c index 332c3df..57e2332 100644 --- a/scraper2vdr.c +++ b/scraper2vdr.c @@ -148,9 +148,7 @@ time_t cPluginScraper2vdr::WakeupTime(void) { } cOsdObject *cPluginScraper2vdr::MainMenuAction(void) { - if (config.mainMenuEntry == 1) - return new cScraper2VdrPluginMenu("Scraper2Vdr", update); - return NULL; + return new cScraper2VdrPluginMenu("Scraper2Vdr", update); } cMenuSetupPage *cPluginScraper2vdr::SetupMenu(void) { |