According to this issue with JWPlayer -> http://www.longtailvideo.com/support/forum/Setup-Problems/15538/xspf-pla...

I need the xspf playlist to display this tag -> <meta rel='type'>video</meta>

But what I get is -> <type rel="flv">flv</type>

Yet in the screenshot on the XSPF Playlist project page it shows that the tag <meta rel='type'>flv</meta> should appear

Any help?

Comments

benced’s picture

For reference here is what my playlist looks like -> http://www.anarchotv2point0.org/drupal5/christiebooksplaylist

benced’s picture

Changed lines 392 to 397 from xspf_playlist_node.module

FROM


$item[] = array(
'key' => 'type',
'value' => $type,
'attributes' => array(
'rel' => $type,
),

to


  $item[] = array(
    'key' => 'meta',
    'value' => $type,
    'attributes' => array(
      'rel' => 'type',
    ),

//UPDATE//
Okay, the reason I don't think it was working because I was trying it here -> http://www.longtailvideo.com/support/jw-player-setup-wizard

and not on my actual site, regardless I don't think <type> is an actual proper tag, correct me if I am wrong

arthurf’s picture

Status: Active » Fixed

This is fixed in CVS now. I did some work to make sure the entire XSPF is validating, and things are looking much better. I'm not sure why I missed this before, but it is working now

arthurf’s picture

Status: Fixed » Patch (to be ported)

Woops, still need to port this to D6

aaron’s picture

Status: Patch (to be ported) » Fixed

no new dev in the d6-1 branch, and this doesn't apply to the d6-2 branch. marking as fixed. thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.