Hi,
I'm currently trying to create a player to stream a live feed using RTMP, with a html5 fallback for iOS devices, adaptive bit streaming for the RTMP stream and implement all this in a playlist.
I have no problem doing each of those on their own, and even combining some of them (playlists with adaptive bit streaming, html5 fall back with adaptive bit streaming for RTMP), but I cannot get them to work together. Is what I am trying to do possible?
The pseudo code is:
playlist : [
{
modes : [
{
rtmp stream
flash fallback
}
]},
{
modes : [
{
rtmp stream
flash fallback
}
]}
]
Putting the modes block inside of the playlist block is not supported, it is not the intended way to do this.