Streaming for Android devices using Amazon AWS and Adobe FMS 4.5
I have created a live stream using Amazon Web Services and Adobe Flash Media Server 4.5.
AWS provides me with both a .f4m and .m3u8 file, to use in <object><embed> and <video> tags, respectively.
The .f4m loads fine on my desktop browser, and the .m3u8 file loads fine on my iOS device. However, my Android devices will not load either file.
What code/solutions are there to get this to play on Android devices?
My current .f4m code (retrieved from http://www.osmf.org/configurator/fmp):
<object width="600" height="409">
<param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback_101.swf"></param>
<param name="flashvars" value="src=http%3A%2F%2F<myinfo>.cloudfront.net%2Fhds-live%2Flivepkgr%2F_definst_%2Fliveevent%2Flivestream.f4m"></param>
<param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>
<embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback_101.swf" type="application/x-shockwave-flash" allowscriptaccess="always"
allowfullscreen="true" width="600" height="409" flashvars="src=http%3A%2F%2F<myinfo>.cloudfront.net%2Fhds-live%2Flivepkgr%2F_definst_%2Fliveevent%2Flivestream.f4m">
</embed>
</object>
My current .m3u8 code:
<video src="http://myinfo>.cloudfront.net/hls-live/livepkgr/_definst_/liveevent/livestream.m3u8" height="300" width="400"> </video>
