Difference between revisions of "Daily podcasts"

From WikiDLXTV
Jump to: navigation, search
(Initial page)
 
(Added details on how to reverse the sort)
Line 36: Line 36:
 
     </item>
 
     </item>
 
  </list>
 
  </list>
 +
* If you see your feeds in a reversed order (oldest entry is first/newest entry is last), then you can add a negative value to the '''limit''' tag. This feature will reverse the sort order and will get your newest feeds first in the list.
 
* Get an idea for what content can be used from [[UMSP Content]]
 
* Get an idea for what content can be used from [[UMSP Content]]
  

Revision as of 09:22, 22 November 2010

Description

The Daily podcasts plugin allows you to add video/audio RSS feeds directly in the UMSP server without the need for a specific plugin. You can add your subscriptions in an XML file and view them in the UMSP GUI


Prerequisites

  • You will need to create an XML file that will list the feeds you want
  • The feeds that you may add must have direct links to content playable by WDTV. For example, such feeds will have a Media File section while viewed in Firefox.


Configuration

  • Enable the plugin in the web interface, under UMSP
  • Create an empty XML file in a path convenient to you (for instance in /conf/daily-podcasts.xml):
touch /conf/daily-podcasts.xml
  • Point the plugin's configuration variable to your file
config_tool -c DAILY_PODCASTS_XML='/conf/daily-podcasts.xml'
  • Save the configuration
config_tool -s
  • Add content to the file, by using this format (example for two feeds, the first is just for test, the second is genuine). Add as many item sections as you need:
<?xml version="1.0"?>
<list>
   <item>
       <description>Menu Entry 1</description>
       <item>
           <description>Menu Entry 1</description>
           <url>http://video.feed/1</url>
           <limit>number of items to display</limit>
       </item>
   </item>
   <item>
       <description>GeekBeat.TV</description>
       <item>
           <description>GeekBeat.TV</description>
           <url>http://feeds.feedburner.com/calismall</url>
           <limit>48</limit>
       </item>
   </item>
</list>
  • If you see your feeds in a reversed order (oldest entry is first/newest entry is last), then you can add a negative value to the limit tag. This feature will reverse the sort order and will get your newest feeds first in the list.
  • Get an idea for what content can be used from UMSP Content


Troubleshooting


Developer/Changelog