From 9da4912be1d7f27d2d6eb717a7993b5a0f2924f6 Mon Sep 17 00:00:00 2001 From: louis Date: Sat, 12 Apr 2014 17:34:13 +0200 Subject: [PATCH] Updated README --- README | 44 +++++++++++++++++++++++++++++++++++++++++--- scraper2vdr.c | 4 +--- 2 files changed, 42 insertions(+), 6 deletions(-) diff --git a/README b/README index efa52e1..2550775 100644 --- a/README +++ b/README @@ -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= 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 = +episode = + +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/.rec/ +then the scrapinfo file has to be placed in /video/series/ + +For movies the format is + +movie +id = +episode = + 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) {