mirror of
https://projects.vdr-developer.org/git/vdr-plugin-scraper2vdr.git
synced 2023-10-19 17:58:31 +02:00
Updated README
This commit is contained in:
parent
801610d259
commit
9da4912be1
44
README
44
README
@ -34,10 +34,14 @@ To run the plugin the following libaries have to be installed:
|
|||||||
- uuid-dev
|
- uuid-dev
|
||||||
- imagemagick or graphicksmagick
|
- 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:
|
startup the following options can be set:
|
||||||
|
|
||||||
-i <IMAGEDIR>, --imagedir=<IMAGEDIR> Set directory where images are stored
|
-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
|
in time before the related and already reliably scraped event entry is
|
||||||
deleted from the database.
|
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
|
Service Interface
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
@ -148,9 +148,7 @@ time_t cPluginScraper2vdr::WakeupTime(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cOsdObject *cPluginScraper2vdr::MainMenuAction(void) {
|
cOsdObject *cPluginScraper2vdr::MainMenuAction(void) {
|
||||||
if (config.mainMenuEntry == 1)
|
|
||||||
return new cScraper2VdrPluginMenu("Scraper2Vdr", update);
|
return new cScraper2VdrPluginMenu("Scraper2Vdr", update);
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cMenuSetupPage *cPluginScraper2vdr::SetupMenu(void) {
|
cMenuSetupPage *cPluginScraper2vdr::SetupMenu(void) {
|
||||||
|
Loading…
Reference in New Issue
Block a user