Meta tags displaying in wrong format for JWPlayer
benced - February 4, 2009 - 12:02
| Project: | XSPF Playlist |
| Version: | 5.x-1.20-beta1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | patch (to be ported) |
Jump to:
Description
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?

#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
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
Woops, still need to port this to D6