DVR with HDS
I can play HDS video in flowplayer fine but the DVR function doesn’t appear to work?
I am using this guide http://flash.flowplayer.org/plugins/str … d-live-dvr
It would be great if this could work in evostream, or perhaps it does and i haven’t enabled DVR mode on autoHDS ?
I can increase the number of fragments / size so its a shame i cant buffer that in the player and seek..
here is the code i am using for flowplayer.
<html>
<head>
<script src="/flowplayer/flowplayer-3.2.12.min.js"></script>
</head>
<body>
<!– set up player container named "httpstreaming" –>
<a id="httpstreaming-dvr" style="display:block;width:660px;height:350px;"></a>
<script>
flowplayer("httpstreaming-dvr", "/flowplayer/flowplayer-3.2.16.swf", {
plugins: {
f4m: { url: "/flowplayer/flowplayer.f4m-3.2.9.swf",
dvrBufferTime: 8,
liveBufferTime: 8,
},
httpstreaming: { url: "/flowplayer/flowplayer.httpstreaming-3.2.10.swf" },
// the "tube" skin
controls: { url: "/flowplayer/flowplayer.controls-tube-3.2.15.swf"}
},
clip: {
url: "http://127.0.0.1/evo/media/autoHDS/myStream/myStream.f4m?DVR",
autoPlay: false,
urlResolvers: [‘f4m’],
provider: ‘httpstreaming’,
}
});
</script>
</body>