I'm trying to get a playlist going with rtmp streaming. I need a short video clip to play, then go to our live feed.
I've been reading the docs and trying for many hours now. This is what I have:
video: http://gracetelevision.net/index.php?test
playlist: http://gracetelevision.net/rss/home_video
Thanks if anyone can help!

Here's the code so you don't have to go to the links:
VIdeo:
var flashvars =
{
file:'/rss/home_video'
};
var params =
{
allowfullscreen: 'true',
allowscriptaccess: 'always',
bgcolor: '#000000',
wmode: 'transparent'
};
var attributes =
{
id: 'mp1',
name: 'mp1'
};
swfobject.embedSWF('/img/swf/player46.swf', 'player', '350', '306', '9.0.155', '/img/swf/expressinstall.swf', flashvars, params, attributes);
Playlist:
<?xml version="1.0" encoding="UTF-8"?><playlist version="1" xmlns="http://xspf.org/ns/0/">
<tracklist>
<track>
<creator>Creator</creator>
<title>Title</title>
<location>rtmp://watchcelebratefs.fplive.net/watchcelebrate/</location>
<identifier>intro/PrayerShawl.mp4</identifier>
<meta rel="type">rtmp</meta>
</track>
<track>
<creator>Creator</creator>
<title>Title</title>
<location>rtmp://watchcelebratelivefs.fplive.net/watchcelebratelive-live/wiministry001/</location>
<identifier>wiministry001</identifier>
<meta rel="type">rtmp</meta>
</track>
</tracklist>
</playlist>