I am having an issue with SWF tools and loading an external SWF playlist file.

The playlist file is hosted on the same domain server space. The actual files are on a 3rd party streaming server service. I've already investigated the crossdomain.xml as being a possible issue - its not it.

My XML File looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
  <trackList>
    <track>
      <creator>New Creation World Outreach Church</creator>
      <title>Would The Real Jesus Please Stand Up?</title>
      <location>yya-2008-10-19.flv</location>
    </track>
   </trackList>
</playlist>

And then, I'm attempting to use the following code in a node:

<?php
print swf('yya-2008-10-19.flv',
          array(
            'flashvars' => array('type' => 'rtmp','playlist' => 'http://www.newcreationwoc.org/files/yya-playlist/yya-media.xml'),
            'othervars' => array('stream' => 'rtmp://newcreationwoc.flashsvr.com/newcreationwoc/', 'methods' => array('action' => 'swftools_flv_display')),
          )
        );
?>

I'm trying to get a playlist file to work, and it won't, the way this is setup now, the flv file that loads - the audio plays, but the video does not. If I leave the file blank, nothing shows up (not even a blank video). The URL for this is: http://www.newcreationwoc.org/yyamediatest any and all assistance would be greatly appreciated.