Skip to content

Instantly share code, notes, and snippets.

@brent20
Created September 21, 2012 16:03
Show Gist options
  • Save brent20/3762342 to your computer and use it in GitHub Desktop.
Save brent20/3762342 to your computer and use it in GitHub Desktop.
Overide BlueCast iFrame embed function with Flash or HTML5
<!-- Change Source src and Object data with hard link to BlueCast MP4, Adjust video size with embed width and height tags -->
<video width="320" height="240" controls="controls" autoplay="autoplay">
<source src="http://bluecast.creighton.edu/Panopto/Content/Sessions/c95c4643-bc01-4d9c-bb79-8611069a9589/170e1935-f6f7-4a4a-a0b4-5686114b8797-5202d421-25dd-4fa9-9462-79fe1abeb75a.mp4" type="video/mp4">
<object data="http://bluecast.creighton.edu/Panopto/Content/Sessions/c95c4643-bc01-4d9c-bb79-8611069a9589/170e1935-f6f7-4a4a-a0b4-5686114b8797-5202d421-25dd-4fa9-9462-79fe1abeb75a.mp4" width="320" height="240">
<embed width="320" height="240" src="movie.swf">
</object>
</video>
<!-- OR -->
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<source src="movie.webm" type="video/webm">
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240">
</object>
</video>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment