Week 4 Notes

Embedding Media / Media Encoder

Project A: Add Flash Video (FLV), QuickTime video and HTML5 video (MP4/h.264). 3 options including script to divert non-Flash environments.

Project B: Embed Vimeo

ONLINE VIDEO IN CREATIVE SUITE… PLAN:

Brief presentation: Video compression for the Web:

Create (fun! - in iMovie) or download QuickTime video

Create alternate presentations for Flash and iPhone

OR... embed Vimeo player and video

Video You Can Use:

HTML5 Video Element Code

First type the following:
<video width="xxx" height="xxx" controls="controls">
where the video width value is the width of your video and the video height value is the height of the video (both in pixels). Use the controls code to display player controls.
Then type this:
<source src="xxx.MP4"> where xxx.MP4 is the filename for your MP4 format video.
Finally, enter:
Your browser does not support the video tag in HTML5 </video>
That last line displays text if the viewer's browsing environment does not support HTML5.