Using an XSPF playlist with v4.4 of the player, I cannot find a combination of things that work to get a file to stream from Limelight using an encrypted URL.
Below is a dummy playlist based on the actual one:
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<title>Playlist for Player</title>
<tracklist>
<track>
<title>My Vidoe</title>
<creator>Me</creator>
<annotation>No description.</annotation>
<location>myfile.mp4?h=1111222233334444</location>
<meta rel="start">0</meta>
<meta rel="duration">1686</meta>
<meta rel="streamer">rtmp://xxxx.fcod.llnwd.net/xxxxx/e1/secure/clientname/nodename/stream</meta>
</track>
</tracklist>
</playlist>
If I remove the "?h=1111...." from the location, everything works fine, and yes, "type=rtmp" is in the Javascript that sets up the player itself.
Please, any help to get this going?
For the player code, the type would be "playlist" not "rtmp". "playlist" is the default and is not a valid value for the type flashvar, therefore, you do not include any type in your player code.
You must include the type in every track of your playlist.
<meta rel="type">rtmp</meta>