That is what I do now if I need to organize (delete double recordings), and then I manually edit the title to include the episode info. But it is sub-optimal.
We really need to pick up the redesign of the EPG system, all this info belongs in separate data structures, so you can work with it.
Same goes for other data, for example an age rating. It would be handy if you could block access to all programs listed as 18+, without having to block the entire channel. The EPG data is there for a lot of providers, and I think is some cases it can be grabbed too. But there is no way to store it in the current system.
It is possible to grab other things.
The elements which are possible are given in the file attached.
This will not mean, we can fill each element with data.
Some examples:
<programme start="20140308200000 +0000" stop="20140308214000 +0000" channel="SkyMoviesFamily.uk">
<title lang="en">Hotel Transylvania</title>
<desc lang="en">Dracula opens a luxury resort for monsters, to provide a refuge from terrified humans. His cosy sanctuary is disrupted when a normal man unwittingly checks in, and the situation is complicated when the unwanted guest turns out to be the descendant of a famous vampire hunter - and takes a liking to the count's daughter. Animated comedy, with the voices of Adam Sandler and Andy Samberg.</desc>
<credits>
<director>Genndy Tartakovsky</director>
<actor>Dracula (Adam Sandler), Jonathan (Andy Samberg), Mavis (Selena Gomez), Frankenstein (Kevin James), Eunice (Fran Drescher), Wayne (Steve Buscemi), Wanda (Molly Shannon), Quasimodo (Jon Lovitz)</actor>
</credits>
<category lang="en">Drama</category>
</programme>
How I do it now:
<programme start="20140308200000 +0000" stop="20140308214000 +0000" channel="SkyMoviesFamily.uk">
<title lang="en">Hotel Transylvania</title>
<sub-title lang="en">[Drama]</sub-title>
<desc lang="en">Dracula opens a luxury resort for monsters, to provide a refuge from terrified humans. His cosy sanctuary is disrupted when a normal man unwittingly checks in, and the situation is complicated when the unwanted guest turns out to be the descendant of a famous vampire hunter - and takes a liking to the count's daughter. Animated comedy, with the voices of Adam Sandler and Andy Samberg.
Genndy Tartakovsky
Dracula (Adam Sandler), Jonathan (Andy Samberg), Mavis (Selena Gomez), Frankenstein (Kevin James), Eunice (Fran Drescher), Wayne (Steve Buscemi), Wanda (Molly Shannon), Quasimodo (Jon Lovitz).</desc>
</programme>
and:
<programme start="20140308140000 +0100" stop="20140308150000 +0100" channel="UniversalChannel.pl">
<title lang="pl">CSI: Kryminalne zagadki Miami 6: Niech mnie kule biją</title>
<title lang="en">(CSI: Miami: Going Ballistic)</title>
<desc lang="pl">Serial rozgrywa się w południowej amerykańskiej metropolii, luksusowym mieście, które pulsuje nocnym życiem. Opowiada o przygodach najlepszej grupy śledczych z Florydy. Porucznik Horatio Caine wraz ze swoją ekipą porusza się po wytwornych tropikalnych miejscach w Miami, gdzie krzyżuje się ze sobą wiele różnych kultur</desc>
<credits>
<director>Sam Hill</director>
<actor>David Caruso</actor>
<actor>Emily Procter</actor>
<actor>Adam Rodriguez</actor>
<actor>Khandi Alexander</actor>
</credits>
<date>2008</date>
<category lang="pl">serial kryminalny</category>
<episode-num system="onscreen">21</episode-num>
</programme>
<programme start="20140308140000 +0100" stop="20140308150000 +0100" channel="UniversalChannel.pl">
<title lang="pl">CSI: Kryminalne zagadki Miami 6: Niech mnie kule biją</title>
<sub-title lang="pl">[serial kryminalny] (CSI: Miami: Going Ballistic) (Ep.21) (2008) (USA)</sub-title>
<desc lang="pl">Serial rozgrywa się w południowej amerykańskiej metropolii, luksusowym mieście, które pulsuje nocnym życiem. Opowiada o przygodach najlepszej grupy śledczych z Florydy. Porucznik Horatio Caine wraz ze swoją ekipą porusza się po wytwornych tropikalnych miejscach w Miami, gdzie krzyżuje się ze sobą wiele różnych kultur
Sam Hill
David Caruso, Emily Procter, Adam Rodriguez, Khandi Alexander</desc>
</programme>
In principle a rating for the movie is possible, although I never grab it at the moment. I only found one grabber definition (which I use) which is capable of grabbing it..
<programme start="20140308115000 +0100" stop="20140308140000 +0100" channel="Film1Premiere.nl">
<title lang="nl">The Hypnotist</title>
<desc lang="nl">Tien jaar nadat Erik Bark heeft besloten zijn leven als hypnotiseur naast zich neer te leggen, vraagt inspecteur Joona Linna hem om hulp bij een moordzaak. Erik heeft geen andere keuze en brengt een zwaargewond slachtoffer onder hypnose. Plots wordt Erik getroffen door een reeks gewelddadige gebeurtenissen. Hij had gezworen om nooit meer iemand onder hypnose te brengen. Nu breekt hij zijn belofte om levens te redden, maar zet daarmee zijn eigen leven op het spel
Na zijn internationale doorbraak met de Zweedse familiefilm 'My Life as a Dog' (1985) werkte regisseur Lasse Hallström voornamelijk aan Amerikaanse projecten als 'What's Eating Gilbert Grape' (1993) en 'Chocolat' (2000). Deze thriller is zijn eerste Zweedse film sinds 25 jaar</desc>
<credits>
<director>Lasse Hallström</director>
<actor>Mikael Persbrandt</actor>
<actor>Tobias Zilliacus</actor>
<actor>Lena Olin</actor>
<actor>Helena af Sandeberg</actor>
<actor>Oscar Pettersson</actor>
</credits>
<category lang="nl">Misdaad-Thriller, 2012</category>
<rating system="Kijkwijzer">
<value>16+</value>
</rating>
<rating system="Kijkwijzer">
<value>geweld</value>
</rating>
</programme>
Although when it is available on the website it should be possible to grab it and include it.
Willy
PS: The XMLTV importer has to be adapted to include all this extra info. Now only title, subtitle and description are supported. Also enigma has only 3 fields.
Edited by doglover, 8 March 2014 - 08:59.