videoize is a simple jQuery plugin that i wrote for easily creating html 5 video tags for capable browsers, with a fallback option for either flash or quicktime. videoize is a stand alone plugin that includes a minified version of the excellent jQuery SWFObject plugin for embedding flash objects.
to call videoize, simply include the jQuery file and in your $(document).ready function call. videoize comes with the following options and override-able defaults =>
$("#videoize").videoize({
// location of the mp4 video file
mp4: "",
// location of the ogv file for firefox
ogg: "",
// location of the flash video player
flashplayer: "player.swf",
// location of video poster image
poster: "",
// video height
height: "480",
// video width
width: "720",
// autoplay video
autoplay: false,
// show video controls
controls: true,
// if set to true, the fallback player will be quicktime, not flash
quicktime: false
});