Click to See Complete Forum and Search --> : How do i put a movie on my website?


Bruce109
03-09-2005, 06:07 PM
So i have no idea if this is even possible but i'll ask the question anyway. I have a free geocities web site and i want to put videos on it but i don't know how. Could i use HTML or what? If so, what script would i use? If not, then does anyone know another way of doing it?

mccandless5
08-27-2006, 06:48 AM
same question from me. Ima slo a geosite person (website noob) and id like to put a movie on that u clcik on to start. How would i do that. Ive already uploaded the movie so id just have to link it but i dont know the pre-texts etc.

Any help much appriciated

ecolodge
08-28-2006, 06:42 PM
i believe you would use the embed tag....

something like

<embed src="http://www.geocities.com/file.mpg" width="425" height="350"></embed>

something like this.... but it wont have controls....

another way is if you have flash 8, then you can use the flash converter to convert a mpg or avi or wmv into a flash file (.swf)

then, it will spit out the flash movie with player controls. then for the HTML, you would use something like this code to play a flash file.....

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="347" height="418">
<param name="movie" value="http://www.geocities.com/videofile.swf" />
<param name="quality" value="high" />
<embed src="http://www.geocities.com/videofile.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="347" height="418"></embed>
</object>

but you would change the width and height to your liking. hope this helps

mccandless5
08-29-2006, 02:39 PM
thx dude ill gicve it a shot

wtopa
08-30-2006, 01:14 PM
There are many examples of embedable multimedia at Image-me Myspace (http://image-me.com/funny_myspace_animations.php), including animated gif, mov and avi file formats. You only need to tweak a few parameters to customise the final result.

Alternatively, you may upload your video host like YouTube and use the html code that they offer:
<object width="96" height="128"><param name="movie" value="http://www.youtube.com/v/7SySVtkR5d0"></param><embed src="http://www.youtube.com/v/7SySVtkR5d0" type="application/x-shockwave-flash" width="96" height="128"></embed></object>