In Flash Media Playback, playlists (.m3u), including live stream items, don't have the "live" (or DVR) scrub bar for those streams.
The default value for the streamType of the PlayList is "recorded". Because there is no method to differentiate between a live stream and a recorded one, the streamType cannot be set correctly.
To enable this capability, create a manifest file in which to declare the streamType of the stream and include that file in the PlayList.
<manifest> <id>id34</id> <duration>253</duration> <mimeType>video/mp4</mimeType> <streamType>live</streamType> <media url="rtmp://myserver/sample" bitrate="500" height="200" width="400"/> </manifest>
<manifest> <id>Live</id> <duration>253</duration> <mimeType>video/mp4</mimeType> <streamType>dvr</streamType> <media url="rtmp://myserver/sample" bitrate="1500" height="200" width="400"/> </manifest>
Keywords:
cpsid_85780

