Daily podcasts
From WikiDLXTV
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>
- Get an idea for what content can be used from UMSP Content
Troubleshooting
- Make sure the DAILY_PODCASTS_XML variable is set
- Make sure the XML is valid. Use this link to validate your XML if in doubt (warnings are fine): http://validator.w3.org/#validate_by_input
Developer/Changelog
- Developed by PaulF
- Discussion thread: http://forum.wdlxtv.com/viewtopic.php?f=49&t=725