473,464 Members | 1,571 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

What would be the best way to embed a video that was made in windows movie maker?

Death Slaught
1,137 Top Contributor
The title is the question. what would be the best way to embed a video that was made in windows movie maker ive tried different formats .swf .avi .mpeg and ive tried embeding it, making it a link, object data, img dynsrc, and none of them seem to work two of them started to load another page but got half way and stoped. So if any 1 has a solution it would be greatly appreciated.

Thanks, Death Slaught
Aug 18 '07 #1
8 3609
gemguy
12 New Member
Hi,

I think its better to do by using the object tag rather than embed. I used and tested with .mov files which works well in window media player. just have a try with this piece of code
Expand|Select|Wrap|Line Numbers
  1. <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="240">
  2. <param name="src" value="data/test.mov" >
  3. <param name="controller" value="true" >
  4. <param name="autoplay" value="false">
  5. <object type="video/quicktime" data="data/test.mov" width="320" height="240">
  6. <param name="controller" value="true" >
  7. <param name="autoplay" value="false">
  8. alt : <a href="data/test.mov">test.mov</a>
  9. </object>
  10. </object>
  11.  
It plays in wmp..

Gemguy
Aug 20 '07 #2
Death Slaught
1,137 Top Contributor
Hi,

I think its better to do by using the object tag rather than embed. I used and tested with .mov files which works well in window media player. just have a try with this piece of code
Expand|Select|Wrap|Line Numbers
  1. <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="240">
  2. <param name="src" value="data/test.mov" >
  3. <param name="controller" value="true" >
  4. <param name="autoplay" value="false">
  5. <object type="video/quicktime" data="data/test.mov" width="320" height="240">
  6. <param name="controller" value="true" >
  7. <param name="autoplay" value="false">
  8. alt : <a href="data/test.mov">test.mov</a>
  9. </object>
  10. </object>
  11.  
It plays in wmp..

Gemguy
ok thanks ill try it and let you know

Thanks, Death Slaught
Aug 20 '07 #3
Death Slaught
1,137 Top Contributor
Well i tried it it ask me if i want to run an activex control on this page i click ok and it takes me to the alt and i click on that and i get an error any suggestions on why its not working i may just be doing something wrong no clue.

Thanks, Death Slaught
Aug 20 '07 #4
drhowarddrfine
7,435 Recognized Expert Expert
Try this:
Expand|Select|Wrap|Line Numbers
  1. <OBJECT id="VIDEO" width="320" height="240" 
  2.     style="position:absolute; left:0;top:0;"
  3.     CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
  4.     type="application/x-oleobject">
  5.  
  6.     <PARAM NAME="URL" VALUE="your file or url">
  7.     <PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
  8.     <PARAM NAME="AutoStart" VALUE="True">
  9.     <PARAM name="uiMode" value="none">
  10.     <PARAM name="PlayCount" value="9999">
  11. </OBJECT>
Aug 21 '07 #5
Death Slaught
1,137 Top Contributor
Try this:
Expand|Select|Wrap|Line Numbers
  1. <OBJECT id="VIDEO" width="320" height="240" 
  2.     style="position:absolute; left:0;top:0;"
  3.     CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"
  4.     type="application/x-oleobject">
  5.  
  6.     <PARAM NAME="URL" VALUE="your file or url">
  7.     <PARAM NAME="SendPlayStateChangeEvents" VALUE="True">
  8.     <PARAM NAME="AutoStart" VALUE="True">
  9.     <PARAM name="uiMode" value="none">
  10.     <PARAM name="PlayCount" value="9999">
  11. </OBJECT>
well it makes a black box on the screen which is a start its probley just the extension its in what would be a good extension for this?

Thanks, Death Slaught
Aug 21 '07 #6
drhowarddrfine
7,435 Recognized Expert Expert
.wmv .
Aug 21 '07 #7
Death Slaught
1,137 Top Contributor
.wmv .
thanks but i still just get a blank box i know that i got the location right i tried making it pigger but that didnt work either this seems like more trouble than its worth so thanks alot for all your help.


Thanks, Death Slaught
Aug 21 '07 #8
Death Slaught
1,137 Top Contributor
oopppss typo lol i ment bigger not "pigger"
Aug 21 '07 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: AES/newspost | last post by:
Can anyone provide a quick tip on the html structure to link from a thumb to a movie poster and from there on to a QuickTime movie, all in one go, using EMBED? I have a number of (large)...
1
by: Frances Del Rio | last post by:
I have this tag to embed a video: <EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" SRC="video.wmv" name="Video"...
7
by: Kilian A. Foth | last post by:
I just found this amazing video puzzle game written with the pygame library, which promises to be infinite fun - but I can't get it to decode any video file I own, except the game's own example...
5
by: Michael A. Covington | last post by:
Suppose I wanted to write software which would put together a show by segmenting together some existing video clips, repeating some of them over and over, and either display the show, or even...
4
by: yawnmoth | last post by:
I'm currious - how do applet, object, and embed compare to one another? They seem to me to mostly do the same thing, so why would one chose one over another?
1
by: Binba | last post by:
I created the simplest embed QT movie page, and for starters, want to get the version. An HREF event works fine, but otherwise I get a fabulous "Unspecified error". I'm using MSIE6 WinXP SP2. ...
1
by: =?Utf-8?B?R3JlZ29yeU5lbHNvbg==?= | last post by:
How do I get the beatuful Plus! Movie Maker transitions that I had on XP to work with Vista version of Movie Maker. I'd hate to think I lost a product I invested in beacuse I actually upgraded my...
0
by: =?Utf-8?B?c2R1bWU=?= | last post by:
im trying to make a movie on windows movie maker, but when i put the 8th picture it gets closed and i cant finish it. why? and how can i fix it? -- Sdume.
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.