Results 1 to 4 of 4

Thread: How to put videos to my website

  1. #1
    Join Date
    Jan 2009
    Posts
    43

    How to put videos to my website

    Hi,

    Please let me know how to put videos to my website?
    I have a simple DHTML website with some javascript & css.
    Can you guys please let me know the basics of putting the videos to my website?

  2. #2
    Join Date
    Jan 2009
    Posts
    39

    Re: How to put videos to my website?

    Hi,

    first you can also have a look at this existing topic How to put these videos to website?
    Can you tell us what is the format of your videos?
    See when you say that you want to learn putting videos to your website then you must know the very important things to remember first.
    If the size of your videos is large it definitely takes time to upload than the videos with small size. The .mpg & .avi video files are large sized video files as compared to .flv format videos.
    FLV is Flash Video which is mainly used to deliver video over the internet via adobe flash player. The FLV filesa are again supported by all the leading web browsers too.
    You need to choose a good flash player such as JW FLV Player

  3. #3
    Join Date
    Jan 2009
    Posts
    44

    Re: How to put videos to my website?

    Uploading the Video
    First you must save your video to your web server like www.sitename/video1.flv
    Now You must use both the new & old embed tags since some browser may or may not play the videos.
    Use Object tag for this:
    Code:
    <object width="420" height="360"
     classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" 
     codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="src" value="movie1.flv" />
    <param name="controller" value="true" />
    <param name="autoplay" value="false" />
    <!-- Code For Older Browsers -->
    <embed src="movie.mpeg" width="420" height="360"
     autoplay="true"
     controller="true"
     pluginspage="http://www.apple.com/quicktime/download/">
    </embed>
    </object>

  4. #4
    Join Date
    Jan 2009
    Posts
    39

    Re: How to put videos to my website?

    Well said Imtiyaz,
    Note that The only <embed> tag is not allowed therefor using <object type="MIME/Content type" src ="Path/video1.flv"> tag is correct way to put video to your website.
    The advantage behind this is that it provides compatibility to future browsers & if the first tag is not read then it reads its child tag i.e. <embed> tag.
    I hope this explains for more details follow some guides & tutorials available on W3schools & other leading sites.

Similar Threads

  1. Can’t watch any videos on BBC website in Opera 12 browser
    By Jason Voorhees in forum Technology & Internet
    Replies: 2
    Last Post: 21-09-2012, 06:59 PM
  2. How to download videos from metacafe video sharing website?
    By Ganesh Ujwal in forum Technology & Internet
    Replies: 1
    Last Post: 05-06-2012, 06:04 PM
  3. Can i download videos from any website on internet?
    By Rafiq in forum Technology & Internet
    Replies: 3
    Last Post: 02-05-2009, 04:20 PM
  4. How to put these videos to website?
    By flyinpc in forum Technology & Internet
    Replies: 1
    Last Post: 12-11-2008, 02:21 PM
  5. Replies: 4
    Last Post: 06-06-2007, 09:49 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,568,179.20644 seconds with 17 queries