If you want to put any video on your site then first of all check that weather your site has functionality of uploading video or not if not then code for that and enable that service and then put the video on your site.
You can convert your video into mp4 file format and then insert on your site with easy HTML5 tag.
[code]
<video width="640" height="48" controls>
<source src="movie.mp4" type="video/mp4">
</video>
[code]
You can upload it onto you tube or google video. On both there are ways to keep the video private if it's a personal video. On youtube, you can make the video private by going to the Broadcasting and Sharing Options and under privacy, select private. On Google Video, you can select unlisted after you've uploaded your video. Then, on both of them, you can use the embed code and just paste that in your html code wherever you want it and tada! it's there.
You need to make the video to a website friendly format like swf or flv.
I assume you have some mp4 video in hand, try this tool - mp4 to flv
i have used it quite a bit
hi,
here is code for uploading video for your site
<object width=”425″ height=”344″><param name=”movie” value=”http://www.youtube.com/watch?v=S6Gnzx1WyYE″></param><param name=”allowFullScreen” value=”true”></param><param name=”allowscriptaccess” value=”always”></param><embed src=”http://www.youtube.com/watch?v=S6Gnzx1WyYE″ type=”application/x-shockwave-flash” allowscriptaccess=”always” allowfullscreen=”true” width=”425″ height=”344″></embed></object>
Last edited by adumpaul; 04-13-2013 at 02:52 AM.
Reason: to give better answer
You have two options (from the website visitor's perspective) when you want to put video on your website. Either let the visitor wait for the download of the entire video file and then view it, or use streaming techniques to immediately start playing the video file when the page loads. Streaming video becomes more and more popular every day.
Many web designers or webmasters think that the process of creating a video, editing it and uploading it to the website is a pain. The truth is that it does take time to do it, but it's not that complicated.
Bookmarks