How to make a movie from a PowerPoint with a voice over

Hi - as the title suggest, I'd like to record a movie of a PowerPoint presentation with me providing the voice over. I'd then post this onto our company intranet for others to review the presentation.
Any ideas how I'd do this?
Thanks

An easy way would be to export each powerpoint slide as a JPEG file. Import these into an iPhoto album. Drag the iPhoto album into your movie through the Photo Browser and add your voiceover.
It might also be possible to export your powerpoint presentation as a QuickTime movie, but it would be important to do it as a timed presentation rather than a manually advanced presentation, because iMovie will not import manual advance tracks, closed captioning tracks, chapter tracks, etc.
I have imported presentations from KeyNote but have never tried a PPT.

Similar Messages

  • How to make your movie from a template in AE CS6?

    Hello,
    Firstly, I'm new to this forum and Adobe After Effects. Hence, please excuse my beginner's language.
    I recently modified a slideshow template in AE CS6. After doing all the necessary modifications in the template project, I do not know how to make a movie out of it.
    I'll appreciate your help in guiding me by providing the necessary information to create the movie.
    Waiting for a reply.
    Thanks

    JMichael wrote:
    Actually, I have to create the movie urgently and send it to a colleague.
    Ouch. That's rather like saying your thesis committee needs your paper tomorrow and, say, while we're at it, can we help you with your research?
    After Effects is huge, unbelievably deep and stupidly complicated.
    It's not that we don't WANT to help you, it's that we cannot execute the rendering commands for you nor can we make all of the rendering and output decisions for you.

  • How to make a movie from sequence of images?

    Hello buddies,
    I need to build a movie from sequence of images.The sequence of images will be created from YUV(YCbCr) values. How can I create a movie from the sequence of images?

    For Windows
    http://sourceforge.net/projects/ndub/
    For Linux
    http://sourceforge.net/projects/avifile/
    search on sourceforge.net

  • How to make a movie from an audio file and 1 static image?

    Hi,
    I want to make a movie that it is basically an 8 minutes audio file and I want to have a background picture that is static and stays there during the whole 8 minutes of my audio.
    How can I do that?
    I'm able to add the audio and the picture, however I can't stretch the picture to 8 minutes.
    My iMovie version is 5.0.2
    Thanks,
    Martin

    Hi mcanovas - Simply duplicate the picture as many times as needed. In the Photos pane you can extend the pic to 30 seconds, so duplicate that 16 times and there you go!
    I hope the audience will stay focused

  • How to make one movie from different imovie files?

    I have 12 imovie files that I am trying to put together as one movie with 12 chapter markers.
    How do I do that?
    Thanks.

    ...import all 12 movies in it and mark the chapters...
    very hard to imagine a less space consuming way...
    you can drop the movies directly into iDVD…
    you get a videoDVD with 2x6 (I wouldn't place 12 chapters on a single menu) "chapters"...

  • How to make a movie from my projects

    How do I take my IMovie Projects into one movie on a dvd

    Hi mcanovas - Simply duplicate the picture as many times as needed. In the Photos pane you can extend the pic to 30 seconds, so duplicate that 16 times and there you go!
    I hope the audience will stay focused

  • How can i delete movies from my macboook to make space and keep them on icloud?

    How can i delete movies from my macboook to make space and keep them on icloud?

    Since iTunes Match nor iCloud supports storing video content at this time (other than music videos purchased from the iTunes Store) what you want to do is not possible. There may be other cloud storage solutions out there, but none that integrate with iTunes.
    FYI, if any of the movies are purchased from the iTunes Store the service Apple calls iTunes in the Cloud by be a partial solution for you. However it is strongly recommended that keep a local backup of all your purchased media and not depend solely on a third party (Apple) to keep your data safe.

  • How do I delete movie from iCloud on my iPad

    How do I delete movies from iCloud on my iPad

    That's a big fat lie, I have 10 movies via digital copy and takes 0 space from my icloud backup. & we have 5 devices backup to my icloud account AND I have my backup storage to basic 5GIGS. So right there you say to make you pay more storage is a BIG FAT LIE. Our devices contains 8-64GB's and everything fits in a 5gigs space.
    You might as add well the apps accounts for space to. WRONG!!
    Those apps are in your account but not in your storage, the iTunes App Store part, doesn't even add to your icloud storage. Your backup contains the save files, network routers you connected in the past plus the small layout how you customized it over your home page.
    That part takes small kb of space needed to save all that.
    Movies on your device will take storage but if it's NOT on your device, IT WONT!
    Like I said, once it's added to the account via key from the case to your account, stays tie to your account & will NOT take space from your icloud backup storage.
    And don't even forgt that I have 5 device from my family with 10 digital copies on one storage with 5gigs and have 800's MB left. We use our photo/videos we took from camera to a remote secure site onto our computers.
    Simple as that, if you don't listen to that then I feel sorry for you not listening.
    But your not gonna get any other answers besides logging out what I said months back. GOOD DAY!
    Ps. If there were, you've been already got an answer besides mine. Go ahead and waist your life lookn for an answer which doesn't have an answer to other than that what I said.
    And yes, that's what I meant JJorvath. Hide it but will not get off your account bc it's not part of icloud backup.

  • How to make it move correctly?

    I made a simple Flex application. There is a helicopter which
    will move to points that user clicks in the canvas. For example, it
    is at A point. When I click at B point, the helicopter will move to
    B. Then it will move to C when I click at C.
    However, the problem arises when I click at B, C, D
    continuously. It moved from A to B. However, I don't think it moved
    from B to C. Maybe it moved from B' to C.
    Please tell me how to make it move correctly.
    [CODE]
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import flash.events.Event;
    import mx.controls.Alert;
    [Embed(source="library.swf", symbol="Helicopter")]
    public var MayBay:Class;
    [Bindable]
    public var xF:Number;
    [Bindable]
    public var xT:Number;
    [Bindable]
    public var yF:Number;
    [Bindable]
    public var yT:Number;
    public function onCanvasClick(event:Event):void
    var x:Number= myCanvas.mouseX;
    var y:Number= myCanvas.mouseY;
    var oX:Number=h1.x;
    var oY:Number=h1.y;
    xF=oX;
    yF=oY;
    xT=x;
    yT=y;
    MoveEffect.play();
    // Alert.show("x="+x+" y="+y+" xOld="+oX+" yOld="+oY);
    ]]>
    </mx:Script>
    <mx:Move id="MoveEffect" target="{h1}" xFrom="{xF}"
    yFrom="{yF}" xTo="{xT}" yTo="{yT}" duration="2000" >
    </mx:Move>
    <mx:states>
    <mx:State id="NewState">
    </mx:State>
    </mx:states>
    <mx:Panel width="70%" height="50%" title="Vi du">
    <mx:Canvas click="onCanvasClick(event)" id="myCanvas"
    width="100%" height="100%" color="White">
    <mx:Image id="h1" source="{MayBay}" width="80"
    height="50">
    </mx:Image>
    </mx:Canvas>
    </mx:Panel>
    </mx:Application>
    [/CODE]

    Make clicking disabled when the helicopter is moving. So
    right after a click, disable clicking.
    There are many coding possibilities for doing so. Make your
    own, then add the code below after it:
    MoveEffect.addEventListener("effectEnd",
    callHandlerFunctionOfSomeSort);
    private function callHandlerFunctionOfSomeSort(e:Event):void
    // In this section, re-enable it using your own method.
    Good luck!

  • How do I import movies from sony HDR PJ200

    How do I import movies from sony HDR PJ200?

    hi, if your movies are recorded in AVCHD formats, they are not supported by iMovie so far. So, to make the conversion seems to be the best choice now. Except the brorsoft suggested by emmalucky, Video Mate also fits your mac well. IMovie accepted video formats includs .DV, .MOV, .MPEG-4, .M4V、H.264, .AIC. So, you can convert your movies to above video formats. Hope this help.

  • TS3720 how can i upload movies from Sony pj580v camcorder to use with imovie11?

    How can I upload movies from Sony pj580v camcorder to use with imovie 11?

    Transfer it to your computer and import into iTunes, make sure it's in a compatible format. Then simply sync with the iPad. If you have a camera connection kit and you know the footage is compatible you can connect it directly.
    Follow the link to see formats
    http://www.apple.com/ipad/specs/

  • My message always comes from my iCloud @me handle and not my other IM accounts when I send an IM? How to make it come from my @gmail account?

    My message always comes from my iCloud @me handle and not my other IM accounts when I send an IM? How to make it come from my @gmail account?

    Hi,
    As you have found in the View Menu of iChat is the option to Display the Recipients Bar
    This bar when clicked will display the Screen Names that you know for your Buddy and your own Screen Names.
    The Buddy's names are in the "To:-" section whilst your own are in the "From:-"
    Example pic from my iChat 6
    The Chat window has to Be Open.
    The Buddy's current name becomes a Drop Down that show the To and From names.
    It appears to allow you to Connect Google or Jabber IDs to AIM Buddies but the tick will move to any valid Account if you change either the To choice or the From choice.
    AS you say about the add Buddy drop down that appears - when your Buddy list are displayed as one an extra drop down appears fro you to Select the account/list it is joining as a Buddy
    8:17 PM      Wednesday; January 4, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts- 18   movies need to go-.

    How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts… 18 plus movies need to go….  Thank you.

    Instead of removing the music from the cloud or the iTunes library why not shuffle your music using a Smart Playlist which excludes the holiday music, or tracks that are not checked. For example, use this very simple Smart Playlist:

  • How can I transfer movies from the apple tv to the ituenes, to watch in the ipad?

    how can I transfer movies from the apple tv to the ituenes, to watch in the ipad?

    Is this a rental or a purchase?
    Rentals on ATV cannot be transferred.
    The 2nd and 3rd gen model do not have accessible storage. Some movie purchases are stored in iCloud (if you live in the US) where you can reload in iTunes on your computer)
    If you own the 1st gen aluminum model then it should be set to sync
    http://support.apple.com/kb/HT1143

  • How can I delete movie from my itunes

    How can I delete movie from my itunes on cpmputer?

    I think I found a solution to this problem. Go into the Video app and tap on TV Shows and then tap on the icon for the show that is downloading. Next to each episode, there is a circle with a square in the middle of it. Tap the square next to each episode and it will disappear both from that list and and from the downloading queue in the iTunes app. When you want to download a particular episode, go back into the show in the Video season and tap on Show Complete Season. Now each episode has its own Download button.
    Needless to say, it is insane that when you redeem a season purchase on the iPad, it insists on downloading the entire season.

Maybe you are looking for

  • Switching off layer in smart object causes it to move in photoshop

    Dear all. I am stumped. I have piece of packaging artwork that I'm using in my 3D software. Smart Objects are great for this as all I have to do is go to Photoshop, double-click the Smart Object, then in Illustrator turn off the layers I need etc and

  • Latest update already installed but can't open file

    I have recently downloaded the latest update for Pages (version 5.2), and my Appstore updates pages confirm this by showing "installed" but when I go to open a Pages documents, I get a message saying I need a newer version of Pages to open the file. 

  • Procurement of import materials (scenario).

    hi sap gurus Can anybody explain me Scenario’s? With examples 1 .Procurement of import materials. For this where I should maintain the pricing for foreign currencies. Please explain me for above scenario, from PR, PO, MIGO, MIRO, Payments.(how excise

  • SQL SSRS 2008 DateTime Calendar Control and Oracle 10g Data Source

    Hello. I am creating reports in SSRS 2008 using the calendar control for a date range. Let's say we select a start date of 3/3/2012. This parameter is sent into my SQL statement in the WHERE clause which is executed against an Oracle 10g database. Al

  • ERROR after installing Application Development Runtime 11.1.1.5

    hi i have install Application Development Runtime 11.1.1.5 for jdev 11g release 2 ofm_appdev_generic_11.1.1.5.0_disk1_1of1OracleFusionMiddleware11gRelease1 now when i try to open my jspx file my weblogic is 10.1.3 am on window xp am not able to do an