I was wondering if you can serve the player with a youtube link from a playlist, Because without a playlist (serving the file directly) , youtube videos plays but when I serve it from a playlist, it doesn't play.
This is the code I use for the playlist
- Code: Select all
<playlist xmlns="http://xspf.org/ns/0/" version="1">
<trackList>
<track>
<file>http://www.youtube.com/watch?v=heEqAwQ5phI</file>
</track>
</trackList>
</playlist>
This is the code I use on the html
- Code: Select all
<object width="640" height="360" data="http://domain.com/nuevo/player/player.swf" type="application/x-shockwave-flash">
<param name="movie" value="http://domain.com/nuevo/player/player.swf">
<param name="flashvars" value="config=http://domain.com/testplayer/config.xml&guide=http://domain.com/movies/guide/mid/4807&playlist=http://domain.com/movies/playlist/mid/4807&image=thumbnail.jpg">
<param name="allowscriptaccess" value="always">
<param name="allowfullscreen" value="true">
<param value="transparent" name="wmode">
<param name="bgcolor" value="#000000">
</object>