Page 1 of 1

RSS Feeds - Not of type VIDEO

PostPosted: Sat Feb 22, 2014 5:54 pm
by Zorhail
Hi all,

I've been looking around at the wiki and other threads and non of them have been able to solve my problem involving rss feeds.
Every rss stream that I use gets it's items skipped because they are not of type video when they clearly are...
I have tried a variety of different streams and the debugger has the same output.
I can currently add a livestream source on its own with the video url and it works fine but its as soon as rss feeds become involved...

(LiveFeeds_Test.rss)
(NOTE: lets just say http://example.com/test.mp4 is a valid mp4 file)
  Code:
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:media="http://192.168.0.2/video/Test.rss" version="2.0">
   <channel>
      <title>Test Stream</title>
      <link>http://192.168.0.2/video/Test.rss</link>
      <description>My steaming movie links</description>
      <item>
         <title>Test Film</title>
         <link>http://link</link>
         <media:stream url="http://example.com/test.mp4" type="video" />
      </item>
   </channel>
</rss>


The file above is stored on a local webserver hosted by xampp. It is successfully read by serviio but all of the items (1 item) is skipped?!?! Again its not of type video.

If anyone has experienced this before or has an idea of how to solve it, your help it would be greatly appreciated.

Thanks

Re: RSS Feeds - Not of type VIDEO

PostPosted: Mon Feb 24, 2014 6:24 pm
by zip
post detailed log please

Re: RSS Feeds - Not of type VIDEO

PostPosted: Mon Feb 24, 2014 8:12 pm
by npuser
Rename the Test.rss to LiveFeeds_Test.rss which is then invoked by LiveFeeds.groovy as long as actual attributes follow following format:
  Code:
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
   <channel>
      <title>Test Stream</title>
      <link>http://192.168.0.2/video/LiveFeeds_Test.rss</link>
      <description>My steaming movie links</description>
      <item>
         <title>Test Film 1</title>
         <link>http://link1</link>
         <media:stream url="http://example.com/test.mp4" type="video" />
      </item>
      <item>
         <title>Test Film 2</title>
         <link>http://link2</link>
         <media:stream url="http://example.com/test2.mp4" type="video" />
      </item>
   </channel>
</rss>

NPuser