Link to home
Start Free TrialLog in
Avatar of bhnv9
bhnv9

asked on

displaying movies online - fast action

I have short trailer movies that I'd like to enable the user to view online. I previously used the following code:

<!-- URL's used in the movie-->
<A HREF=ex1.WMV></A>
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
 WIDTH="600" HEIGHT="500" id="people" ALIGN="">
 <PARAM NAME=movie VALUE="people.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#000000> <EMBED src="people.swf" quality=high bgcolor=#000000  WIDTH="600" HEIGHT="500" NAME="people" ALIGN=""
 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>

This code was not sufficiently quick.
Has anyone dealt with this topic and compared different methods for displaying?
Thanxs

Avatar of CRagsdell
CRagsdell

What size is the swf file?

Have you played around with the compression settings in the Publish Settings?

CR
Avatar of bhnv9

ASKER

I'm new at this topic.
What do you mean by swf files? What are the publish settings?
I have 10 films of wmv extentsion. Each film is between 400kb and 1700kb.
Your code references a Shockwave file people.swf. What is its size?

You can reduce the size of the movie files by using different compression methods and rates.

CR
In addition to the above comments you could force Flash to pre-load a certain amount of your movie before attempting to play it.  The problem is not the code you are using to embed the movie but i suspect the initial byte count of your .swf file.

I would recommend that you inspect the byte count of your first 20-50 frames in the test movie feature found under the control menu in Flash using the Bandwidth Profiler found under the view menu.

I would then reduce the the size of the first 20-50 frames to enable quick loading and streaming of the file.

If you do not understand the above then your knowledge of Flash is perhaps lacking too much to enable a reasonable answer to your question.

B
Avatar of bhnv9

ASKER

Sorry if I didn't make the question clear...
The movie is not a flash movie but a regular windows media player movie.
My knowledge in the topic is lacking but maybe some expert out there has the patience to explain.
ASKER CERTIFIED SOLUTION
Avatar of Blue52
Blue52

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial