OK. Thanks for your answer Lyndon. This works fine, but now I have some problems with updating the content. This is the xml-file with the first picture:
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>vip systemtechnik</title>
<link>http://www.vip-systemtechnik.de</link>
<description></description>
<language>de</language>
<lastBuildDate>Sun, 26 Feb 2012 11:54:45 +0100</lastBuildDate>
<item>
<title></title>
<link></link>
<pubDate>Sun, 26 Feb 2012 11:52:31 +0100</pubDate>
<category></category>
<description></description>
<media:content url="http://www.vip-systemtechnik.de/temp/6126.jpg" type="image/jpeg" width="116" height="67" />
</item>
</channel>
</rss>
Then I will load another picture with this code:
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>vip systemtechnik</title>
<link>http://www.vip-systemtechnik.de</link>
<description></description>
<language>de</language>
<lastBuildDate>Sun, 26 Feb 2012 12:54:45 +0100</lastBuildDate>
<item>
<title></title>
<link></link>
<pubDate>Sun, 26 Feb 2012 12:52:31 +0100</pubDate>
<category></category>
<description></description>
<media:content url="http://www.vip-systemtechnik.de/temp/6426.jpg" type="image/jpeg" width="116" height="67" />
</item>
</channel>
</rss>
The player is set to "update every minute" - but it don't update every minute. I think it's even more every 15 minutes - but in my case this is to much time. In the autoplay it looks fine:
<rssDownloadSpec type="periodic" value="60" />
What goes wrong? Or rather what does this parameter "periodic" do?