anesthesia
11-25-2003, 02:13 PM
How do I go about taking a short video from my digital camera and placing it onto my website?
|
View Full Version : placing video on my site..? anesthesia 11-25-2003, 02:13 PM How do I go about taking a short video from my digital camera and placing it onto my website? asx232 11-27-2003, 02:04 AM have you tried to link it in? anesthesia 11-27-2003, 03:16 AM Nope. I don't even know where to start. I've never done anything like it before and have never bothered to learn how. I wouldn't even know what form to save it in. That's horrible I know. My major was Web Design in college but due to illness, I had to leave after almost 2 years. I guess I left before that was taught. :( Any pointers? Matthew 11-27-2003, 05:53 PM The easiest way is just to put a link to it ie <a href="movie.mov">Download my Movie!!</a> There are other ways like you can embed the movie into your page but that is the easiest way to do it and the most user friendly way too! anesthesia 11-27-2003, 08:51 PM Alrighty.. But just so I cover all of my options.. If I wanted to embed what would I do? amicus 11-27-2003, 09:55 PM here's how you would embed it into the page. the 'filename' has to be 'filename' and the 'video.wmv' is the actual name of the video (the file name). <object id="mediaplayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"> <param name="autostart" value="true"> <param name="loop" value="true"> <param name="autorewind" value="true"> <param name="showcontrols" value="true"> <param name="filename" value="video.wmv"> </object> |