Playing a movie on a page within the browser?

Morgan19

Registered
How would I go about making a video playable within a user's browser? I have an already-existing site and a video file for the site. I'd like a user to go to a certain page and the video would play directly on that page without the user having to download the file and play it with an external program.

A good example are movie trailer pages– you go to the page and, after loading (streaming?), the video plays directly in the browser.

m19
 
Enter the following line of HTML code:

<embed src="iPhoto001.mov" width="710" height="556" autoplay="false"></embed>

You would replace:
'iPhoto001.mov" with the name of your movie.
'710' with the width of your movie.
'556' with the height of your movie.
'false' to 'true' to have the movie autoplay when the web page is completed loading.

----

To see the above code in action, go to '<http://home.comcast.net/~mlmug_sam/200503/20050311/01/Saving_Photos_and_Text_Titles_to_CD.html>'
 
Back
Top