Download & Extend

Meta tags displaying in wrong format for JWPlayer

Project:XSPF Playlist
Version:5.x-1.20-beta1
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

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

#1

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

#2

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

#3

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

#4

Status:fixed» patch (to be ported)

Woops, still need to port this to D6

#5

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!

#6

Status:fixed» closed (fixed)

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