Thursday, 4 February 2016

How to Insert an MPEG Video Into DreamWeaverIn Feburary 2016 04,

In Feburary 2016 04,
Upload the video to your Web page's server. Do this with whatever FTP program you usually use to upload images, objects and HTML files. You can also use Dreamweaver for this. Select the video that you want to upload In the 'Files' palette and click the blue 'Up' button.
Click the 'Code' button at the top of the Dreamweaver interface. This will put you into Code View, allowing you to view and edit the actual HTML code for your Web page.
Find the place in the code where you want to embed the video. This can be tricky if you've never worked with HTML, but you'll have plenty of chances to experiment. Look for text that tips you off to where you are in the page or look for images (represented in HTML by tags, where 'xxx' is the image filename) that do the same.
Insert the following code:
where 'movie.mpeg' is the filename (and path, if it's not the same as the HTML file) of your movie, and the two values under 'width' and 'height' are whatever you want to use. (If you leave these attributes out, the movie will appear in its actual size.) Control the attributes of the embedded movie by adding any number of arguments, separated by spaces, just like the 'width' and 'height' arguments. Here's a partial list:autostart='true' to make the video begin playing automaticallyloop='true' to make the video continue playing forever unless stopped by the userstarttime='00:00' to make the video begin at a particular location (minutes:seconds)align='left'/'right'/'top'/'bottom' to place the video relative to the text around it
Click the 'Design' button to return to the standard Dreamweaver view, then test your video.
In Feburary 2016 04,

No comments:

Post a Comment