Showing posts with label Flash. Show all posts
Showing posts with label Flash. Show all posts

Friday, March 29, 2013

Embedding Flash Video Files in HTML5

 
Adobe Flash is one of the most popular ways of embedding video files in web pages. Due to its popularity,
all the leading browsers support the Flash plug-in. You can use the <object> tag to embed Flash videos in a
web page.

<object id="flash1" data="Media/Video1.swf" type="application/x-shockwave-flash" height="200" width="200"> 
<param name="movie" value="Media/Video1.swf"> 
</object> 

 The <object> tag this time plays a Flash video file Video1.swf. The type attribute specifies the MIME type for Flash videos (application/x-shockwave-flash).