How about further integrating a buildin videostream section in MP?
It seems that there are a number of different plugins for MP1 for handling webstreams from different sources. all having their own interface (some better than others) but the same core functionalities. It would be nice to have a standardized way of adding tv-shows/streams etc as a plugin dev then only have to make a parser to create the interface XML.
i was thinking that it could be a xml based import from a given DIR taken files with an ordered structure as show below.
Perhaps also adding a genre tag a type tag (tv, you-tube) etc.
This is mostly aimed at tvshows but the interface could/should be extended for all sorts of streams
Code:
BBC
|__News
|__News 01-04-2008
|__News 02-04-2008
|__News 03-04-2008
|__News 04-04-2008
<channel channelName=BBC>
<program name=News>
<episode>
<Title>News 01-04-2008</Title>
<URLs>
<quality name=High>
<URL_adress>HighQ_URL</URL_adress>
</quality>
<quality name=low>
<URL_adress>lowQ_URLL</URL_adress>
</quality>
</URLs>
<Desc>The World is nice and peachy</Desc>
<Thumb_URL>Thumbnail_url</Thumb_URL>
<Aired>01-04-2008</Aired>
</episode>
<episode>
<Title>News 03-04-2008</Title>
<URLs>
<quality name=High>
<URL_adress>HighQ_URL</URL_adress>
</quality>
<quality name=low>
<URL_adress>lowQ_URLL</URL_adress>
</quality>
</URLs>
<Desc>The World is still in great shape</Desc>
<Thumb_URL>Thumbnail_url</Thumb_URL>
<Aired>03-04-2008</Aired>
</episode>
</program>
</channel>