Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: how to publish a film on the web  (Read 3649 times)

0 Members and 1 Guest are viewing this topic.

benedetto

  • Guest
how to publish a film on the web
« on: April 12, 2007, 04:47:27 AM »
Dear friends,

I would like to put some short films (1 minute each) that I have on my computer in vmw format, to a page on my web site.
The question is: what have I to do ? It must be easy for the visitors to watch the films on their own PC and the risult must not be "heavy", a lot of visitors hasn't the broadband and it would take time to load the page.
Thank you for your suggestions.
Regards
Benedetto

Carbon Dudeoxide

  • Global Moderator

  • Mastermind
  • Thanked: 169
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Experience: Guru
  • OS: Mac OS
Re: how to publish a film on the web
« Reply #1 on: April 12, 2007, 05:09:24 AM »
I assume you mean WMV format...
If you upload the videos to a website and have then accessible by a download link, loading the page wouldn't be a problem.

benedetto

  • Guest
Re: how to publish a film on the web
« Reply #2 on: April 12, 2007, 06:09:09 AM »
Yes,I mean: windows media video, right.
The question is: how can I put this download link in the html-code? Which tag must I use?
Will the page be too heavy ( many customer use the dial-up connection) ?
Thank you very much
Benedetto

Mindwr@ck



    Rookie
    Re: how to publish a film on the web
    « Reply #3 on: April 12, 2007, 04:01:00 PM »
    There are several ways to do this, embed the video into the web page to be played right from the site, or allow visitors to download the file, or both.  First determine what you want to do.  For a simple download link you use the typical href tag like this

    Code: [Select]
    <a href="http://www.yoursite.com/movie.wmv">Download Movie</a>

    Or to embed the file

    Code: [Select]
          <OBJECT id='mediaPlayer' width="320" height="285"
          classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
          codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
          standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
          <param name='fileName' value="http://www.yoursite.com/movie.wmv">
          <param name='animationatStart' value='true'>
          <param name='transparentatStart' value='true'>
          <param name='autoStart' value="true">
          <param name='showControls' value="true">
          <param name='loop' value="true">
          <EMBED type='application/x-mplayer2'
            pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
            id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
            bgcolor='darkblue' showcontrols="true" showtracker='-1'
            showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="320" height="285"
            src="http://www.yoursite.com/movie.wmv" autostart="true" designtimesp='5311' loop="true">
          </EMBED>
          </OBJECT>

    as you can see there are also multiple options when setting the play from site embedded file.  As for will the page be to heavy for the dial up users, this is just a matter of how large of a file you have.  A couple of things to consider when working with video on your site are:

    How long of a video to publish?
    What quality to publish it at?
    What format to publish?

    Each of these will directly affect the size of the file, and that will affect the "weight" of the page.

    Hope this helps you out.
    Mindwr@ck

    benedetto

    • Guest
    Re: how to publish a film on the web
    « Reply #4 on: April 13, 2007, 01:40:44 AM »
    Hi Mindwr@ck,

    thank you very much, it helps me. I am just starting to work.

    The films are not so long and the format can be the same (wmv), I think that is the easyest to load down for the users. Isn't it ?

    Best regards

    Benedetto

    Mindwr@ck



      Rookie
      Re: how to publish a film on the web
      « Reply #5 on: April 18, 2007, 11:45:25 AM »
      That should be fine.
      Mindwr@ck

      d-boy22



        Rookie
        Re: how to publish a film on the web
        « Reply #6 on: April 26, 2007, 07:09:59 PM »
        real easy just join youtube upload ur video and from there it has html for you and you can paste it to your site