
Video not playing in chrome Version 35.0.1916.114
hello, im pretty new to all this streaming stuff. I'm using AWS Cloudfront to give me an RTMP stream. I can play in Safari but not in Chrome on a Mac. Chrome on PC works fine. Any idea why it's not playing back on a mac?
here's my code:
<div id="myElement"></div>
<div align="center">
<!--div style="width:425px;height:300px;margin:0 auto;" --</div> -->
<div id="mediaplayer"></div>
<script type="text/javascript">
jwplayer("mediaplayer").setup({
sources: [{
file: "rtmp://ec2-54-183-67-73.us-west-1.compute.amazonaws.com/livecf/genelive1"
},{
file: "http://d3qjhetlur8gpr.cloudfront.net/livecf/genelive1/playlist.m3u8"
}],
width: "720",
height: "360",
abouttext: "Meeting Services NA",
aboutlink: "http://na.apps.roche.com/sites/DigitalMediaSvcs/SitePages/Home.aspx",
rtmp: {
bufferlength: 3
},
fallback: true
});
</script>