How to embed a flv video into a web page?

I want to let my visitors to watch my video directly at my web page. How would I do this?

2 Answers

On this page I found the following code:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" width="480" height="360">
<param name="flashvars" value="YOUR_FILE.FLV&YOUR_FILE.JPG" />
<param name="movie" value="YOUR_FILE.SWF" />
<embed src="YOUR_FILE.SWF" width="480" height="360" type="application/x-shockwave-flash" pluginspage="" flashvars="YOUR_FILE.FLV&image=YOUR_FILE.JPG" />
</object>

Obviously replace YOUR_FILE.FLV, YOUR_FILE.JPG and YOUR_FILE.SWF with the URLs of your video and placeholder jpg.

You'll find asking this sort of question on Stackoverflow will get you a quicker and better response.

1

We know FLV can not be played directly in the web page. It must be embed into a player. Here the player indicates the SWF files. With the player, you can start playing video, pause the video playback, play the video with full screen or adjust the volume.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like