(2013-03-30, 17:03)eriche Wrote: Why is XBMC updating all the EPG information - if I just want to watch Youtube and do NOT open LiveTV
Wouldn`t it be better to fetch data if the user is pressing the LiveTV Button?
That's the way it is currently implemented in XBMC - an addon cannot change this behavior.
(2013-03-30, 17:03)eriche Wrote: It also would be great in the setup wizzard to select which BOUQUET are loaded.
I know you can manually input one - but on my system it ignores this and loads always all channels,...
Code:
<group>
<servicereference>1:7:1:0:0:0:0:0:0:0:FROM BOUQUET "userbouquet.erichs.tv" ORDER BY bouquet</servicereference>
<groupname>Erichs</groupname>
</group>
Is it correct to put "Erichs" to the TV-Bouqut section?
I don't think that a wizzard is possible with the limited features of the settings dialog.
In your case you should add "Erichs" into the addon settings. Please make sure that you have checked the "Load only one TV Bouquet" setting - it is strange that you say that it always loads all channels. If this option is checked and an incorrect string is entered into the addon settings, then there should appear no channels at all.
When the addon is iterating over the group list and this feature is activated, it should produce debug output like
"Only one group is set, but curremt e2servicename 'foo' does not match requested name 'bar'"
Maybe you could provide a debug log?
(2013-03-30, 17:03)eriche Wrote: Also very nice would be the possibilitiy to choose how many days the plugin fetches from the EPG.
This would be indeed possible, but does not give any performance advantages. It is not the parsing of the EPG data which takes most of the time, but that the addon has to connect to the webinterface for each channel separately to request the EPG data.
It is possible to retrieve all the EPG data for a whole bouquet at once with just one call - back then when I tried it, the call to the webinterface took quite long for just a couple of channels. When I tested it with a bouquet containing something like 20 channels, the enigma2 box just crashed. That's why I chose the "query each channel separately"-path.
(2013-03-30, 17:03)eriche Wrote: Maybe disabling EPG would also be a good option.
If I need the EPG information because I watch for example TV you could fetch the EPG information in background only for this 1 channel.
If an user wants that everything is like now he could enable the LoadEPG setting
I am using XBMC 12.1 on Windows right now.
GreeT`s ERich
I will make some tests regarding the "Load no EPG at all"-Option. Generally I think this should be implemented into the main PVR part, but I will check how fast it is if I simply return nothing in the addon if XBMC triggers an EPG import.