An embedded media example

This is an example of embedding a media file (in this case an m4a podcast example I created for our Apple users group) on a web page.

I copied the code from The University of Oregon's School of Journalism and Communication example here.

If you were to look at the HTML source of this page, the code to embed the sound here would look like this. If you wanted the sound to autoplay, you would set that option to true:


<embed width="250" height="200"
src="http://home.comcast.net/~bethkatz/lcac/Dipper.m4a" 
autoplay="false"
loop="false" 
controller="true">
</embed>

And here is an example of a YouTube video from NASA about 50 years of space travel. There are some classic video clips in it.

To embed that video here, I copied the tag at YouTube for embedding and pasted it into the HTML for my page. You can find that code by choosing 'menu' on the video and clicking on 'Copy to Clipboard' under 'Embed'.

[ My Comcast Page ] [ My MU Page ]

Beth Katz, bethkatz@comcast.net