How to embed a YouTube video in keynote on ipad2

I am new to using keynote on the ipad2 and wanted to know the steps, if there are any, to embed a YouTube video into keynote.  Any suggestions?

Yes, and if that presents any problems, you do have the You Tube application already installed on iPad.  It is a native application and you can watch any You Tube video through this app. 
Safari is a great webrowser.  But if you want to wach any videos on iPad, find the App in the App store and you won't have any issues.  For example, you could be on CNN.com through Safari and if you try to click on a video, you likely won't be able to watch it.  But, if you download the CNN app from teh App Store, you'll be able to watch all CNN videos through the App.  It is a really logical and safe way to see what you want to see. 

Similar Messages

  • How do I embed a YouTube Video in Keynote 6.5?

    Hi!  Used to be that we could embed a link into Keynote to play during the slideshow; I'm not seeing how to do that now. Help! Please!  It looks like the Keynote just wants the videos to live on board the computer, you just click Media and bring it in...
    Thoughts?  Thanks everyone!
    S

    Hi ViddyYo! I don't recall ever being able to embed videos in Keynote - but you certainly can not embed videos within a presentation now.
    You will have to download the video from the video hosting site and place it as a movie within the Keynote.
    If you own the rights, I would suggest using a website like www.keepvid.com to make it happen.

  • How Do Embed a YouTube Video into the Video Gallery Lightbox Widget

    I just downloaded the VGL widget at Video Gallery Lightbox | Exchange | Adobe Muse CC . I'm able to change the picture but have not figured out how to embed the video. The instructions say it can be changed "via an "insert html" but when I do this I just get another video inserted into the page. Help!!!

    Select the composition and go to composition options > enable "show lightbox parts while editing".
    Now select the target container and remove existing video and insert video html in that container. This way you can change the videos.
    Thanks,
    Sanjit

  • How to embed a Youtube video into a Flex application

    Youtube provides an url and a section of html div code for embedded in html. But they do not work within Flex.
    I may be able to use ExternalInterface to call a HTML iFrame that embed the URL. But any better ways?
    Youtube uses Flash Player. Can we access the FLV file directly? Any suggestions?

    hi,
    create loader(s) or use SWFLoader and use runtime loading to load different YouTube players into your Flash (flex based) movie:
    http://code.google.com/apis/youtube/flash_api_reference.html
    There are samples in TourDeFlex - but they are currently all but broken 404 (including standalone air applicaton version):
    http://www.adobe.com/devnet/flex/tourdeflex.html
    (see section "Could Api > YouTube" - maybe it will work soon),
    regards,
    Peter

  • How do I embed a youtube video in a flash web page?

    I am attempting to embed a youtube video in a flash web page I created. I have been able to do this in html on static sites and thought I might be able to do the same in flash. Can anyone walk me thru the steps to do this?

    Thank you Rob,
    I am VERY new to actionscript and have an additional question:
    I saw this in the beginning notes of the document link you sent me:
    Use the following URL to load the chromeless player into your 
    application and build your own custom controls in Flash:
    http://www.youtube.com/apiplayer?version=3
    how do I do this? Do I do this in actionscript (how) or the import 
    feature?
    Any additional assistance you give me will be greatly appreciated
    Seta Majkia
    Kemitemultimedia
    www.kemitesound.com
    [email protected]

  • Embedding youtube video to keynote

    How do you embed a youtube video into a keynote presentation?  Thank you.

    Use a site like keep is.com to download the video (pick the .mp4 version) and then embed the video file the same as any other.
    Even if there is a way to embed a YouTube video directly I wouldn't since you never know when the Internet might hiccup during your presentation.
    And the usual disclaimers about being mindful of copyright when using videos in presentations to groups, etc....

  • Can anyone tell me how to embed a flash video stream in html5

    Can anyone tell me how to embed a flash video stream in html5. I have a video stream but would love to be bale to get it to run on ipads so would like to know how to embed the flash video stream in html5 http://www.ravedance.net

    Gary, thank you for responding:
    1) I know my "profile" indicates I'm on Mountain Lion.  I have not figured out how to update that.  I am using Yosemite and Keynote Version 6.5.2 on a 15" Macbook-Pro  (tell me how to update my profile, please - nothing I click on opens any kind of "edit" options)
    2) My 20 sec video does play in Quicktime.  I find nothing in the Quicktime Inspector about deselecting "start movie on click."
    3) in my slide presentation I can insert the video on a slide okay and if I click on it can get it to play, But I cannot seem to get it to play after a transition automatically.  Maybe it cannot be done.  Obviously I would like the entire presentation to play automatically without clicking on or between slides.
    Again, thank you for you kind help!

  • How to save a youtube video on  phone

    how to save a youtube video on  phone

    Have you tried changing the value of src attribute in your code to begin with “http:// rather than “// ?
    So your src value should look like http://www.youtube.com/embed/QtJmckpjmfU?feature=player_embedded
    See if that works.
    Cheers,
    Vikas

  • HOW TO EMBED YOU TUBE VIDEO IN DREAM WEAVER CS6

    HOW TO EMBED YOU TUBE VIDEO IN DREAM WEAVER CS6

    Either of these codes should work:
    <div>
    <iframe width="560" height="315" src="http://www.youtube.com/embed/mzyBKElnstQ" frameborder="0" allowfullscreen></iframe>
    </div>
    <div>
    <object width="560" height="315" data="http://www.youtube.com/embed/mzyBKElnstQ"></object>
    </div>
    There is also a Video code that can be used:
    <div>
    <video controls="controls" height="315" width="560">
    <source src=" source.mp4" type="video/mp4" />
    </video>
    </div>

  • How can I download youtube videos to my macbook pro?

    How can I download youtube videos to my macbook pro?

    Install Firefox web browser and there are a ton of add-ons that can do the task.
    https://www.mozilla.org/en-US/firefox/new/
    https://addons.mozilla.org/en-US/firefox/

  • How to control a YouTube video with buttons created with Edge Animate?

    I am able to embed a YouTube video by doing:
    var tubeCont = sym.$("tubeCont");
    var youtube = '<iframe  width="'+tubeCont.width()+'" height="'+tubeCont.height()+'" src="http://www.youtube.com/embed/OCbrZvmLY0o?enablejsapi=1" frameborder="0" allowfullscreen ></iframe>';
    tubeCont.html(youtube);
    I have some buttons that go to another position on the timeline where a different object is shown. if the video is playing, it will continue playing even if the user cannot see it. Hence, I want to pause or stop the video.
    On the button clcik event I have tried:
    sym.getComposition().getStage().getSymbol("youtube").$getSymbol("player").stopVideo();
    sym.$("youtube").$("player").stopVideo();
    youtube.$("player").stopVideo();
    sym.getSymbol("youtube").$("player").stopVideo();
    sym.getSymbol("youtube").stopVideo();
    And other stuff, but I cannot make it doing waht I want.
    Any suggestions?

    Yes, I tried tubeConf, and it doesn't work either.

  • How can I import youtube videos to iMac mediathek ?

    How can I import youtube videos to iMac mediathek ?

    The problem with this question is that Youtube forbids downloads according to their terms unless there is a download option offered, so, in order not to violate the terms of these forums, we are not allowed to discuss such matters.

  • Embed multiple YouTube videos in Captivate 5.5

    I have multiple YouTube videos that I would like to insert into one Captivate file, each video on a separate slide. If the learner moves away from the slide, I'd like the video to stop. If they should return to the slide, ideally the video would be a the beginning point. 
    I've been searching for a while. I found one where it will play one YouTube video per Captivate file, but not multiple videos. Also that one would show a transparent gray over the video while it played.
    Thank you for any assistance.

    Erik,
    Thank you for replying. I apologize that I did not reply sooner.
    I thought I found a widget that I could embed the YouTube videos within a slide, but was having problems trying to get it to work.
    I changed my plan and now have the video opening in a separate window. Because we do not have a technical person to help us for possible future issues this will be a better direction for us to move in.
    Again, thank you!

  • How can i watch youtube videos no flash

    how can i watch youtube videos without installing flash on my imac

    You can try using HTML5 potentially https://www.youtube.com/html5.

  • How can I download YouTube videos in my I pad air?

    How can I download YouTube videos in my iPad Air ?

    If you download youtube videos via your browser on your computer you need a special plugin. For your ipad search the app store for youtube downloaders and see if there are any.

Maybe you are looking for

  • No music via optic cable if tv if off

    I have the AppleTV2 linked with HDMI to the TV and optic cable to the amplifier. I must swich the TV on for the sound to go through to the amplifier. Then, I can switch the TV (all I want is music). This is stupid, because gaving an iDevice with an A

  • Add field in FBL3N Tcode Layout

    Hello All, I wish to add the field LGTXT (Wage Type Long Text) to be displayed in FBL3N.  How to add this field in the layout in FBL3N? Can we add this field? My idea is to view the Wage type text field when i hit the G/L Account and company code in

  • Losing changes in LabVIEW 8--bug report

    Don't know if this has been reported yet or not but it was driving me crazy making my coding changes evaporate until I started realizing it wasn't me. To reproduce: Create a blank project and a new VI Add FP.Open VI Property node with a False Constan

  • Ejecting card after importing photos

    I am using LR 2.3 on a Macbook Pro running OSX 10.5.6 and have noted that since switching from the Nikon D200 to D700, when I import there is no check box for ejecting the card after import.  When I used the D200, this was present.  So, after importi

  • QuickTime 10 in Lion Aspect Ratio Issues....

    I have a query regarding the following. I'm running the updated Avid MC5.5.3 on a new MBP 17i with Lion, that came with QT 10. Is there any reason why when I export from Avid a QT in 16 x 9, which opens in any other media player in 16 x 9, that QT 10