Using f4m inside HTML5 video tag
Hello,
I am trying to set up Adobe Media Server to stream to HTML5 pages too...
It's working with Flash, with NetStream, but I need it with HTML5, to work in iPad/iPhone phones...
I get AmazonCloud and ordered Adobe Media Server, and there I found location to f4m file...
I replaced title with my stream name and I get output like this:
<?xml version="1.0" encoding="UTF-8"?> <manifest xmlns="http://ns.adobe.com/f4m/1.0"> <id>livepkgr/events/_definst_/myCamera</id> <streamType>live</streamType> <duration>0</duration>
<bootstrapInfo profile="named" url="../../../../streams/livepkgr/streams/_definst_/myCamera/myCamera.bootstrap" id="bootstrap2393"> </bootstrapInfo> <media streamId="myCamera" url="../../../../streams/livepkgr/streams/_definst_/myCamera/myCamera" bootstrapInfoId="bootstrap2393"> <metadata> A...<some long code> </metadata> </media> </manifest>
So can someone tell me how to write HTML5 video code for this?
I am trying something like this:
<video preload="auto" height="320" width="430">
<source src="http://<URL>/live/events/livepkgr/events/_definst_/myCamera.f4m" />
</video>
But it's not working...
If someone know something about this, please, help...
Thank you!
