Sharing an edited video on another computer

I am editing video to be used in a PowerPoint presentation. The video needs to be saved in a format that will be viewable on any random cumputer that I load up the ppt file. The problem is that when I export and save the videos I can only view them on this computer. When I open the ppt on another computer the video will not play.
How can I save videos with decent quality that can be viewed on other computers (Mac and PC)? Sorry for the dumb question.

VandyZane,
This is assuming you had the movie encoded in H.264 when you finalized in iMovie. On the PC, you have 2 ways to install the codec. One through Quicktime which you did. The other way is to install a standalone codec (which is H.264). Most PCs would probably have this codec installed as it is one of the most popular used codec to watch downloaded movies. The reason why powerpoint is nothing seeing your movie is because you haven't wrapped it yet into a Windows video file. The program I mentioned changes MP4 to AVI, or with an *.AVI extension. Most PC programs assumes the AVI file as video and use the WMP as the default player.
Why don't you try converting one and then see if WMP plays it. Then insert it into the ppt file and see if it plays properly. If it does, then make sure the corresponding presentation PC has the correct codec installed.
The H.264 vFw codec is also available from the same place I linked you to -- sourceforge.net.

Similar Messages

  • What is "owner-pc-vaio". its in my shared column in Finder. would another computer using my wifi show up in the shared column?

    what is "owner-pc-vaio". its in my shared column in Finder. would another computer using my wifi show up in the shared column?

    If you're in a hotel, school, or someplace with public WiFi access, you'll see a list of all other computers on the network. 
    As opposed to the answers above, with or without sharing on, you will see others on the network and they can see you.  As long as you have sharing off, and even then, they'd not have unrestricted acces unless you disabled all password access, they can see you but they can't do anything.
    If you're on your own private network, someone is stealing your bandwidth.  Since it's a piece of junk Windows computer, you can find out how to send them a nasty virus over a LAN. 

  • Help I can't transfer video to another computer.

    What do I have to do to transfer a flash video to another computer. I published HTML to my usb stick and installed on another computer. When I run the file, the buttons dont work. All they do is flash. When the file is on my original computer, everything works fine.

    Here is more detail.
    As a test, I have a black square on frame one that links to a blue square on frame 2. I saved the .fla file to my c drive.I exported to html and the page comes up and works exactly as it should. The problem is when I save to my flash drive, its like it doesnt recognize any of the actionscript. If I remove all code and just put in stop(). it flickers back and forth between the 2 frames. Again, when the file is saved and exported to the c drive, it works right.
    Below is the HTML that Flash generated.
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>test</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
    var version;
    var axo;
    var e;
    // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
    try {
      // version will be set for 7.X or greater players
      axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
      version = axo.GetVariable("$version");
    } catch (e) {
    if (!version)
      try {
       // version will be set for 6.X players only
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
       // installed player is some revision of 6.0
       // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
       // so we have to be careful.
       // default to the first public version
       version = "WIN 6,0,21,0";
       // throws if AllowScripAccess does not exist (introduced in 6.0r47) 
       axo.AllowScriptAccess = "always";
       // safe to call for 6.0r47 or greater
       version = axo.GetVariable("$version");
      } catch (e) {
    if (!version)
      try {
       // version will be set for 4.X or 5.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = axo.GetVariable("$version");
      } catch (e) {
    if (!version)
      try {
       // version will be set for 3.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
       version = "WIN 3,0,18,0";
      } catch (e) {
    if (!version)
      try {
       // version will be set for 2.X player
       axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
       version = "WIN 2,0,0,11";
      } catch (e) {
       version = -1;
    return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
    // NS/Opera version >= 3 check for Flash plugin in plugin array
    var flashVer = -1;
    if (navigator.plugins != null && navigator.plugins.length > 0) {
      if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
       var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
       var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
       var descArray = flashDescription.split(" ");
       var tempArrayMajor = descArray[2].split(".");  
       var versionMajor = tempArrayMajor[0];
       var versionMinor = tempArrayMajor[1];
       var versionRevision = descArray[3];
       if (versionRevision == "") {
        versionRevision = descArray[4];
       if (versionRevision[0] == "d") {
        versionRevision = versionRevision.substring(1);
       } else if (versionRevision[0] == "r") {
        versionRevision = versionRevision.substring(1);
        if (versionRevision.indexOf("d") > 0) {
         versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
       var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
    // MSN/WebTV 2.6 supports Flash 4
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
    else if ( isIE && isWin && !isOpera ) {
      flashVer = ControlVersion();
    return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
    versionStr = GetSwfVer();
    if (versionStr == -1 ) {
      return false;
    } else if (versionStr != 0) {
      if(isIE && isWin && !isOpera) {
       // Given "WIN 2,0,0,11"
       tempArray         = versionStr.split(" ");  // ["WIN", "2,0,0,11"]
       tempString        = tempArray[1];   // "2,0,0,11"
       versionArray      = tempString.split(","); // ['2', '0', '0', '11']
      } else {
       versionArray      = versionStr.split(".");
      var versionMajor      = versionArray[0];
      var versionMinor      = versionArray[1];
      var versionRevision   = versionArray[2];
             // is the major.revision >= requested major.revision AND the minor version >= requested minor
      if (versionMajor > parseFloat(reqMajorVer)) {
       return true;
      } else if (versionMajor == parseFloat(reqMajorVer)) {
       if (versionMinor > parseFloat(reqMinorVer))
        return true;
       else if (versionMinor == parseFloat(reqMinorVer)) {
        if (versionRevision >= parseFloat(reqRevision))
         return true;
      return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
    AC_FL_RunContent(
      'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
      'width', '970',
      'height', '720',
      'src', 'test',
      'quality', 'high',
      'pluginspage', 'http://www.adobe.com/go/getflashplayer',
      'align', 'middle',
      'play', 'true',
      'loop', 'true',
      'scale', 'showall',
      'wmode', 'window',
      'devicefont', 'false',
      'id', 'test',
      'bgcolor', '#ffffff',
      'name', 'test',
      'menu', 'true',
      'allowFullScreen', 'false',
      'allowScriptAccess','sameDomain',
      'movie', 'test',
      'salign', ''
      ); //end AC code
    </script>
    <noscript>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="970" height="720" id="test" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="test.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /> <embed src="test.swf" quality="high" bgcolor="#ffffff" width="970" height="720" name="test" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
    </object>
    </noscript>
    </body>
    </html>

  • My edited videos on my computer wont let me open them into itunes

    my videos i got off another site are not formated right so i went under a video editing program and added the sound so i can attempt to play them on my ipod wich originaly when the files were formated removed the sound i want to know why my edited videos cant open with my itunes and if there is any way that my files that are not formated right can be changed for my ipod so that i have picture and sound.
    Thank. liadis

    every time i try to open it a thing pops up that says iTunes.exe-Bad Image and it says 'The application or DLL C:\Program Files\common Files\Apple\Apple Application Support \Video Toolbox.dll is not s Valid windows image please check this against you installation diskette' and i press ok and another thing pops up saying 'itunes was not installed correctly. Please reinstall iTunes. Error7(windows error 193).
    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Now head into your Add or Remove programs control panel, select "Apple Application Support", click "Change" and then click Repair.
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post (although it's for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things):
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a window pops up saying that the prograam has encountered a problem and sh...

  • I want to buy a mac book pro to edit video on what computer and software do I get?

    I want to buy a mac book pro to edit video on.  What kind of specifications do I need to make sure Final Cut runs smootlhy. And do I need Final Cut studio or Final Cut X? The software is for beginners?
    Thanks

    Ok great - Im by no means a professional editor I have done a fair bit of video editing for online, presentation and awards videos in my previous jobs, and was advised by a previous trainer to get a mac and final cut pro as working of PCs and with Sony Vegas was time consuming and inefficient. I am buying a whole new set of equipment for my office and hope to get the department all trained up on it in the next year.
    I will be learning to use the software but I will need it to make professional videos in the end so I don't think imovie would be appropriate? Thanks for the advice though - I will be prepared for the learning curve.
    Any other advice on which Mac to get also much appreciated.
    Thanks

  • Editing video on one computer...editing audio on another

    Hi I have edited an hour long video program in final cut which has a total of 3 audio channels but would like to pass the project to a friend who also has a mac so as he can edit and mix the audio together with the visual reference on Logic Pro.
    Is there anyway I can pass him the project?if so how can I do this?
    thanks a lot
    Danny

    YEs you can. He needs the project file, all the media (capture scratch video and audio as well as other media you've creates like photos, etc), render files (unless he wants to re-render).
    The other, more common option for having a video ref for audio editing is to simply put a 2-beep at the begining of your movie, then export a self-contained quicktime movie. I can just sync that up in logic and BAM! there's your ref vid.

  • Switching my music and videos to another computer

    well i'm not sure how to keep all of my music
    i have videos on itunes on both computers, but i was afraid to try to upload because i thought it would delete my library and stuff so is there a way it wont delete??
    thank you!

    was afraid to try to upload
    Upload from what to what?
    Just copy the music, then File -> Add folder to library on the new computer.

  • Playing video on another computer

    I have my iTunes library on a home computer (Dell) including movies that are on my iPod. I'd like to be able to view the movies on my work computer (IBM Thinkpad) when I travel. I can't figure how to do this. I can the see the content of my iPod in iTunes on my work computer but I cannot select anything.

    You have to turn off automatic syncing. You can do this by selecting the Manually manage music checkbox in the Summary tab of the iPod in iTunes. This will require you to turn it back off when you get home, assuming you want to keep auto-syncing with your home computer.

  • Can't Edit this Page ..already editing on another computer

    So, I was Editing a Page and went to Publish it, but it
    couldn't Connect, so I hiit Cancel.
    I tried again to Edit the page, when up pops this message in
    a Yellow Box.
    "You Can't Edit this Page now because you are already editing
    it on another computer. Please contact your webmaster "
    [IMG]http://i11.photobucket.com/albums/a173/JoeWood_/Misc/Contrib.jpg[/IMG]
    <a href="http://photobucket.com"
    target="_blank"><img src="
    http://i11.photobucket.com/albums/a173/JoeWood_/Misc/Contrib.jpg"
    border="0" alt="Photobucket - Video and Image
    Hosting"></a>
    The problem is, I don't have a webmaster anymore, so, how can
    I correct this so that I can Edit my Page again?? I have my
    Contribute Key (I think) and probably have the password ..

    Go here:
    http://www.adobe.com/support/documentation/en/contribute/
    Download "Using and Administering Contribute" PDF and page
    229 has your answer step by step.

  • Using ipod with another computer

    Hi I would appreciate any help anyone could offer please! I would like to use my ipod on another computer (ibook g4). How do I go about transfering my songs, videos etc on my new computer. I have purchased some songs but it wont allow me to download to my ipod help! It has copied my ipod onto the computer but wont allow me to access them? Any help very much appreciated thanks in advance!

    I thought my question was answered and it kind of was, however there were some things that were not explained.
    If I use a compatable computer and link into in tunes it ask me a series of questions. All I am trying to do is purchase something from iTunes and download it to my iPod Video from another computer.
    I want to make sure that everything in my iPod stays and that everything I have purchased stays not only in my computer but at the very least that I can make sure that I will be able to have them on my computer when I get home.
    So, is there a way to purchase something from iTunes from another computer and download it my iPod?
    thanx

  • Exporting IMovie to Flash Drive vie IDVD for Burning on Another Computer

    I have made a slide show in IMovie and since my computer can't burn a DVD, I would now like to export the IMovie to IDVD and then onto a flash drive so that I am able to burn on another computer (probably a PC). Which is the best format to put the movie in for export via flash drive and how can I create the appropriate file after transfering the IMovie to IDVD. There didn't seem to be an export or share option for me on IDVD. If someone could help with the steps after sending the IMovie to IDVD. Thank you.

    to finish editting it onto another computer*

  • There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    There is no space to store video on my computer.  I am am looking at getting 1 terabyte on the cloud in hope i can edit video off of the cloud the same way I can with a hard drive.  Is this possible?

    Buy another hard drive.  They're cheap these days.
    In fact, buy a couple of 'em.  I recommend a minimum of five internal hard drives.
    C: Windows and Programs
    D: Project, graphic and audio files
    E: Cache and Scratch
    F: Media
    G: Export

  • TS2972 How do I use home sharing to move a movie to another computer

    I am trying to move my digital copy of The hunger games to another computer through home sharing is this posssible?

    The short answer: because Home Sharing isn't designed for sharing apps, and apps aren't designed to be shared.
    The longer answer:  Think of it like this...
    You download some music in iTunes.  With Home Sharing, another user can listen to it by streaming it over the network.  But the data itself is on your computer.  If you turn off the computer or take it off the network, the other user can't access it.
    But if you send another user the app, they aren't just streaming the data- they installed it on their iOS device.  Because they weren't the one that purchased it, such a transfer could easily be considered "piracy" or "stealing," and nobody likes that (least of all, Apple). 
    When iTunes sees this app, it obviously recognized it, as if saying, "Hey, how did you get this app on your device, if I have no record of you purchasing/downloading it from the iTunes store?"
    post edited to correct spelling errors

  • Edit Itunes Library on another computer

    If I get ARD (and pay 300 bucks) - can i go into another computer on my home network and fully edit that computer's itunes library ? tweak playlists etc ?
    basically is ARD like windows RDT ?

    If all you need is to be able to control another computer, then ARD would be vast overkill. If the systems all have Mac OS X 10.5 or 10.6, you can use the Screen Sharing built into those versions of Mac OS X to take control of the machine, at which point you can do just about anything you could do from the system itself.
    Regards.

  • Sharing Video with another Mac

    I have several Video files of TV Shows downloaded with iTunes on my Power Mac G5 which is primary computer at home and is located in my study. The PM is connected to my home LAN and has AirPort. I want to play the videos on my 17" PowerBook via Airport connection or via its ethernet connection while lounging im family room where there's a nice log fire burning. Both computers are running iTunes 6.0.1 (3).
    So, I crank up iTunes on the Power Mac and ensure Music sharing is active and computer doesn't sleep.
    The Power Book has great AirPort signal strength in the Family Room but when I fire up iTunes on it all I can see in the Shared Music is MUSIC and NO video files show up at all. Why is this ? Why would videos be special cased and not shared ? The iTunes is all about music and I wonder if Video such as the TV Shows I've downloaded aren't considered music and therefore aren't shared.
    Can Video files be shared to another computer on same LAN just like music files can be ?
    I searched the Help but found no help on this matter.
    Any insights appreciated as I really would like to watch my video TV Shows in more comfort (ie Family Room) compared to my study location, and I don't want to have to copy the fairly large Video TV Show files across to my Power Book from Power Mac in order to watch them on the Power Book.

    Sharing does not work for purchased videos.
    As a workaround burn them to a DATA CD/DVD through iTunes and use the resulting disk(s) on your PB - Videos will play off the disk without importing them to your PB's iTunes Library.

Maybe you are looking for

  • Entry missing in TADIR

    Hello, A Z-report gets dynamically generated in one of our application. My problem is that sometimes there is an entry in TADIR for the Zreport that has been generated and sometimes there is not. Can somebody tell me how and in what scenarios an entr

  • Java.io.IOException: Invalid identity certificate signature

    Hi, My WebLogic 11g is running on a Windows Server 2008 64 bit server. I have obtained a certificate with private key for this Windows server. Now I would like to use this certificate and private key for my WebLogic server. What I have done: 1. Expor

  • Uploaded file will have wrong char set

    Hi there i am running apex 4.1 with glassfish on a Oracle 11.2 Database. my database has the following NLS settings: NAME VALUE$ NLS_LANGUAGE ENGLISH NLS_TERRITORY AMERICA NLS_CURRENCY $ NLS_ISO_CURRENCY AMERICA NLS_NUMERIC_CHARACTERS ., NLS_CHARACTE

  • 6i c/s migration to web problems...

    All, I am curious if others have had similar issues when migrating from c/s to web forms. We have seen the expected cosmetic issues in making this switch and some expected functional issues (reports invocation, dll calls to pjc's, etc.). What we didn

  • Downloading of Quicktime Pro 7

    Hi. I've just purchased Quicktime Pro 7 online from the Australian Apple store and got a confirmation page in IE to say that the purchase has been successful and that I could immediately download the software "from the link below". Unfortunately ther