473,569 Members | 3,009 Online
Bytes | Software Development & Data Engineering Community
+ 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 3625
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
3398
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) QuickTime movie files, each of them matched to a one-frame QuickTime movie poster of the same screen size and also to a much smaller JPEG thumb of the same...
1
3176
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" width="320" height="312" ShowControls="1" ShowStatusBar="1" invokeURLs="0" autostart="1" enableErrorDialogs="0" ></EMBED> but I need video area bg...
7
7513
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 .mpg. All I have is lots and lots of useless .avi, .mp2, .wmv, and so on... Now, the pygame.Movie documentation says the Movie class can decode...
5
1308
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 output it as a video file. How much help can C# and .NET give me with this? How much of the infrastructure is in place?
4
10616
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
1783
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. <html> <body> <OBJECT classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"
1
2706
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 OS! Any assistance helpful - all other Plus! DME for XP work fine under Vista ... Thank you.
0
1178
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.
0
7703
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7619
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8138
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6290
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5514
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5228
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3662
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
950
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.