Hi,

I'm trying to get the playlist working with:
* The codeshop apache-module for HTTP-streaming of the h264-codec (streamer: lighttpd)
* Mediamover module
* FLVmediaplayer module
* JWplayer 4.6

I've really tried everything but I only get this error in the jwplayer: No suiteable model found for playback of this file.

Then I tried removing tags in the playlist and when I removed this tag it started to work:

<meta rel='type'>mp4</meta>

When I read the specs for XSFP (http://xspf.org/) I can't find this use of the meta tag...

I removed these lines in xspf_playlist_node.module:

// only return last three chars of file type as the type
  /*if ($path_parts = pathinfo($url) ) {
    $item[] = array(
      'key' => 'meta',
      'value' => $path_parts['extension'],
      'attributes' => array(
        'rel' => 'type',
      ),
    );
  }*/

Then it started to work!

I still wonder what the meta-tag is supposed to do? And I would be glad if I don't have to remove these lines when I do future updates.

Best!
/Jonas