Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to embed a video in powerpoint 2010 to autoplay when I get to that slide (ideal).

OR... if that doesn't work I'd like to hyperlink an image in my presentation to the video... and when I click on it, it autoplays (meaning, I don't have to click the play button).

I followed this tutorial: http://www.howtogeek.com/howto/10552/how-to-add-video-from-the-web-in-powerpoint-2010/

On vimeo, I copied and pasted this provided iFrame code into my presentation:

<iframe src="http://player.vimeo.com/video/20241459?badge=0" width="500" height="375" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> 

<p><a href="http://vimeo.com/20241459">Rick Astley - Never gonna give you up</a> from <a href="http://vimeo.com/zunebock">zunebock</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

But it threw this error... I don't see how this is possible because I copied and pasted the embed code.

Powerpoint cannot insert video from this embed code. Verify that the embed code is correct, and then try again.

Here's an image:

enter image description here So, restating my question:

1) why wouldn't powerpoint be accepting that given embed code?

2) If it just won't work... how do I start a vimeo video automatically on page load?

share|improve this question

2 Answers

up vote 2 down vote accepted

Vimeo's code uses an iframe, which won't work; it sort of expects you to play the video back in a browser, not PPT. It even mentions on the site right beneath the embed code that it's intended for iphones and such.

If you use, say, YouTube instead, PPT's help points out that you need to use the Old Embed code option, which gives you something like this:

<object width="420" height="315"><param name="movie" value="http://www.youtube.com/v/Q7vsoVR5NX4?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Q7vsoVR5NX4?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>

Next problem: The video doesn't play automatically and since it's an object (ie, a "thing" that PPT has no idea about other than to let it do whatever it's going to do), you can't force it to play (other than perhaps with code).

And finally, the site that hosts the video may restrict your ability to play it w/in PPT. I tried a couple of YouTube vids in testing this; neither would play w/in ppt due to copyright restrictions.

share|improve this answer

I opened the video you want to embed in PowerPoint, http://vimeo.com/20241459 and tried to insert it into PowerPoint. Finally, it was successful.

Just change the Embed code to the old version and click "Auto play this video" in embed option.

share|improve this answer
Ah, thanks! I clicked that, saw the "Heads up, this is no longer supported" warning, but didn't notice that the embed code itself had changed. FWIW, I checked the FAQ to see if there was anything about what "no longer supported" means to them, but no joy. Probably just something like "If this doesn't work on your new iPhone or Windows tablet, don't call us to complain. We told you so." :-0 – Steve Rindsberg Dec 7 '12 at 15:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.