I have been asked by a number of individuals how to embed video here. So, here are a couple of methods.
FIRST - you must have captured video and made it available in a web playable format. For instance, web browsers will most likely automatically recognize movie files with the extensions .mov (Quicktime) or .wmv (Windows Media Player) and use the proper player. But it depends on how the user has configured their browser.
-=-=-=-=-=-=-
EASIEST OPTION: Link to the movie file
Use the 'Insert File' option in your Moveable Type Dashboard editor to upload and insert the file into your page or blog entry.
Example: Introduction to e-Portfolios: A Short Movie welcome.mov (1MB)
Notice that I let the user know how large this file is!
-=-=-=-=-=-=-
EMBED OPTION: Here you want the player to show up right in your web page or blog entry. If this is the case then you need to use the following code. Copy and paste this into the source code (<A> icon in your Moveable Type editor) - you will have to decipher the HTML code you find there and look for a good place to place this code.
Example: Introduction to e-Portfolios: A Short Movie
FIRST - you must have captured video and made it available in a web playable format. For instance, web browsers will most likely automatically recognize movie files with the extensions .mov (Quicktime) or .wmv (Windows Media Player) and use the proper player. But it depends on how the user has configured their browser.
-=-=-=-=-=-=-
EASIEST OPTION: Link to the movie file
Use the 'Insert File' option in your Moveable Type Dashboard editor to upload and insert the file into your page or blog entry.
Example: Introduction to e-Portfolios: A Short Movie welcome.mov (1MB)
Notice that I let the user know how large this file is!
-=-=-=-=-=-=-
EMBED OPTION: Here you want the player to show up right in your web page or blog entry. If this is the case then you need to use the following code. Copy and paste this into the source code (<A> icon in your Moveable Type editor) - you will have to decipher the HTML code you find there and look for a good place to place this code.
<embed src="moviename.mov" width="240" height="196" controller="true" autoplay="true" type="video/quicktime"></embed>
Where:
- src is the name of the movie file.
- height and width correspond to the dimensions of the movie.
(Add 16 pixels to height for a movie controller.) A controller can be true - present, or
false - absent - autoplay set to true lets the movie begin playing without user intervention
if so saved. - type helps browsers recognize QuickTime when the page is opened locally, not
from a web server.
Example: Introduction to e-Portfolios: A Short Movie

Leave a comment