Submit Your Article Forum Rules

Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Video display on website - How?

  1. #1
    Junior Member
    Join Date
    Jul 2003
    Posts
    9

    Video display on website - How?

    3 years ago, I created kirbyglass - the second of 3 sites I have authored. I use HTML Transitional 4.01, CSS, some php, some javascript.

    My wife has videoed one of her wind chimes and wants it displayed on her website. I said "OK. No problem", but when I came to do it there was a problem!! or 2.

    The main problem is that I have been unable to find any instruction on how to display an AVI file. Using a search I found several articles, mainly on YouTube, about AVI, and many about HTML, but nothing about both.

    The second problem may go away when I have cracked the first - my wife rotated the camera through 90° in order to get the whole wind chime in the "correct" orientation.

    Any pointers or advice would be greatly appreciated. Thanks.

  2. #2
    Junior Member
    Join Date
    Jul 2003
    Posts
    9

    Re: Video display on website - How?

    I have discovered <OBJECT> and am currently playing with it to get it going. However my second problem still remains - how to rotate a video through 90°?

  3. #3
    WebProWorld MVP TrafficProducer's Avatar
    Join Date
    Jul 2003
    Posts
    1,958

    Re: Video display on website - How?

    I could be best, if you don't have one to create a YouTube account, I think they will accept AVI files... After uploading to YouTube they provide Embed code to place on a website.

    Or may be load AVI into MS MoveMaker and save a different file type.

    For editing Look for WAX and/or VirtualDub (Free which can do all sorts, flip, rotate, colour balance, convert file types, etc)

    Videos to Watch and Video Publishing

  4. #4
    Member
    Join Date
    Jul 2006
    Posts
    30

    Re: Video display on website - How?

    This is the code for a quicktime object that will play an AVI

    <script type="text/javascript">
    document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="195" width="340" name="clock.avi" align="left">');
    document.write('<param name="src" value="clock.avi">');
    document.write('<param name="autoplay" value="true">');
    document.write('<param name="controller" value="true">');
    document.write('<embed height="195" width="340" align="left" src="clock.avi" autoplay="true" controller="true">');
    document.write('</embed> ');
    document.write('</object>')
    </script>

    Martyn
    Martyn
    Martyn-it

  5. #5
    Junior Member
    Join Date
    Sep 2009
    Posts
    1

    Re: Video display on website - How?

    Or with your own Videoplayer
    flashactionscripttutorials.com/?p=projects&actionscript-functie=Videoplayer

  6. #6
    Senior Member
    Join Date
    Sep 2003
    Location
    Global
    Posts
    220

    Re: Video display on website - How?

    Simple method is to create a YouTube account, upload it and insert the YouTube particular video link in your web page.

  7. #7
    Junior Member
    Join Date
    Jan 2010
    Posts
    2

    Re: Video display on website - How?

    I’m starting to learn to develop in HTML, PHP and My SQL and then I’m trying to make a little web-site of recipes. I want to develop a function to add a new recipe in witch I can, when I want to display it, download an image or a video of it but I don’t know how to proceed, with which tools.

  8. #8
    WebProWorld MVP TrafficProducer's Avatar
    Join Date
    Jul 2003
    Posts
    1,958

    Lightbulb Re: Video display on website - How?

    Quote Originally Posted by Anil Ji Garg View Post
    I’m starting to learn to develop in HTML, PHP and My SQL and then I’m trying to make a little web-site of recipes. I want to develop a function to add a new recipe in witch I can, when I want to display it, download an image or a video of it but I don’t know how to proceed, with which tools.

    Maybe a Blog will do most, or all of this.

  9. #9
    Junior Member
    Join Date
    Jan 2010
    Posts
    2

    Re: Video display on website - How?

    sorry to hear that. i only know Youtube is the best choice.

  10. #10
    Senior Member texxs's Avatar
    Join Date
    Jul 2005
    Posts
    528

    Thumbs up Re: Video display on website - How?

    Quote Originally Posted by TrafficProducer View Post
    I could be best, if you don't have one to create a YouTube account, I think they will accept AVI files... After uploading to YouTube they provide Embed code to place on a website.
    That is one way and it works out great for non commercial sites. But note that they will show thumbs and links to related content. For a lot of people, this means competition.

    As for the original question. It is possible to embed an .avi, .mpg etc. into a web page, it's just not recommended because it doesn't work in most browsers and in the ones it does work in it works differently on different computers.

    If it's a professional appearance you want check out my Add a Video special I'm currently running. It costs less than the software you need to buy to embed the video on your site (if it's a non commercial site you can get the software for free). If it is just a personal web site I would recommend "JW Player".

    Caution:
    If you are using wordpress be extremely careful using plugins to embed a video, there's a couple people who stole JW player and are using it in their plug in with their own name on it. I had an associate get sued by the folks who make the JW player over it.

    hope this helps!

Page 1 of 2 12 LastLast

Similar Threads

  1. How to display RSS feed within my website..
    By jamx551 in forum Web Programming Discussion Forum
    Replies: 3
    Last Post: 06-28-2010, 07:07 PM
  2. The Best way to display links on your website
    By petec2 in forum Search Engine Optimization Forum
    Replies: 7
    Last Post: 03-07-2010, 02:45 AM
  3. display/grab latest youtube video on our website
    By gerrit in forum Web Programming Discussion Forum
    Replies: 3
    Last Post: 05-13-2009, 04:20 PM
  4. Website Display Problem in FF3
    By SEMMatt in forum Web Programming Discussion Forum
    Replies: 4
    Last Post: 09-04-2008, 06:55 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •