VideoByDave (vfwTech.com)
Media Composer - Vegas - CS3

Formerly "Avid Liquid" of Colorado

 

 


 

MC4 
Tutorials 

MC4 
Editing
MC4 DVD   Liquid
Vegas
CS3

Compression  &
Conversion
 
 Audio  Lights Cameras Tech / Legal Misc Product Reviews
 
 Liquidians on YOU TUBE
 Colorado Vidoegraphers
ColoradoFilmVideo Assoc

Online Video Magazines
      EventDV (*)
       DV.com

     DV Info.net
  
 VideoMaker Video News


Avid MC:
AVID MC forum

Vegas 8 Editing:
VegasVideoHelp.com
Squidoo.com-Learning Vegas
Ed Troxel's Newsletter
Sony - Vegas Pro Forum
Creative Cow-Vegas Forum

CS3 - Premier Pro
Wrigley Premier Pro Site
CreativeCow
         CS3-Premier Pro
         Audition
         Soundbooth CS3
         Encore CS
         Flash CS3

Adobe Vid Workshop
AdobeTV.com

Liquid Editing:
Pinnacle AVID LIQUID forum 

Other Forums

DvIndoNet

Cameras:
 
(about HDV cams)
Canon HV-A1 DVI Forum
Canon HV20 Forum
Panasonic HMC-150 (AVCHD)

Other Creative Cow Sites
 Business & Marketing
 Event Videographers
 Audio Professionals
 Indie Film & Documentary 
 Cinematography
 Broadcast Video

Check These Out:
Learning Center
Video University

Digital Juice
WEVA
4EverGroup

 
   
   
 
 
 
 
   
 
 



 

 

   

Setting up Windows Media Player on a Web Page

 

  • Streaming/Progressive download video can be done in a couple of different formats, both QUickTime and Windows Media. Streaming video requires that you have a streaming server, and a lot of knowledge on how to use it, so stick with Progressive Download. This is support by the "normal" servers. I'm not familiar with QT, so here's how you do it with Windows:

     
    1. Download the free Windows Media Encoder from Microsoft. The WMV profiles supplied with Liquid don't support progressive download.
    2. Fuse your timeline to an AVI.
    3. Start the Windows Media Encoder. Use the New Session wizard and choose Convert A File. Put in the filename and from the Distribution dialog choose Web Server (Progressive Download).
    4. In the Encoding Options you pick the bitrate. Choose Full Screen Video. This uses the same size as the source. Select the appropriate bit rate (higher bit rates give better quality but increase the file size). If you don't want a full size NTSC or PAL frame you're better off resizing in Liquid to the proper size first  rather than resizing in the WMV encoder.
    5. Fill out the display properties (if you want), make sure the Begin Converting when I click Finish checkbox is checked and click on Finish.
    This will create the progressive download .WMV file. But this alone will not progressively download if put on a web server. You need to also use an HTML file which embeds the player. Here's a short piece of HTML which will do the job:

    <html>
    <head>
    <title>Page Title goes Here</title>
    </head>
    <body>
    <OBJECT ID="MediaPlayer" WIDTH="320" HEIGHT="240" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" TYPE="application/x-oleobject">
    <PARAM NAME="FileName" VALUE="http://someserver.com/myfile.wmv">
    <PARAM NAME="autostart" VALUE="1">
    <PARAM NAME="showcontrols" VALUE="1">
    <EMBED TYPE="application/x-mplayer2"
    SRC="http://someserver.com/myfile.wmv"
    WIDTH="320"
    HEIGHT="240"
    AUTOSTART="1"
    SHOWCONTROLS="1">
    </EMBED>
    </OBJECT>
    </body>
    </html>


    Copy both files to your web server. Edit the HTML and change the size parameters to match the frame. Change the URLs to point to the .WMV file and the title as appropriate. Now when you reference the HTML file it will start the appropriate media player for your system, buffer the video, and begin playing while downloading.

    Hope this helps.
     
    Dave S.
     
    • Thanks Dave. I didn't know that. I hadn't encountered any problems with progressive downloads probably because, most often, I'm using the IE browser.

      So, in a way it would be analagous to the "double coding" that's required for Quicktime files to launch universally in all the major browsers - one set of code for IE and another for the others (Firefox, Netscape...)

      This is an example the code I would use to put a 320x240 .mov on the web. The hyperlink would be on a separate, originating page pointing to this .htm page, which would open in a separate window. Note that I've highlighted each set of code in a different color - again, one for IE, another for the others:

      <HTML>
      <HEAD>
        <TITLE>Page Title</TITLE>
      </HEAD>
      <P ALIGN="CENTER">
      <OBJECT HEIGHT=256 WIDTH=320 CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
          CODEBASE="
      http://www.apple.com/qtactivex/qtplugin.cab" >
      <PARAM NAME="src" VALUE="myvideo.mov" > <PARAM NAME="volume" VALUE=75>
      <PARAM NAME="autoplay" VALUE="true" >

      <EMBED HEIGHT=256 WIDTH=320 TYPE="video/quicktime" PLUGINSPAGE="http://www.apple.com/quicktime/download/"
          AUTOPLAY="true" VOLUME=75 SRC="myvideo.mov"> </OBJECT>
      </BODY></HTML>

      Apple has a tutorial on their site that covers this topic. Again, thanks for the heads up. I will try your method for .wmv.

      Andy Baum, Brooklyn, NY