Movies won't run (for me)

Movies uploaded to "Me" from my Canon Powershot Pro 1 won't run for me when I access the gallery page. I get a Quicktime formatted black screen with controls, then a message to download some more software.
Which software do I need? Why will the run OK in iPhoto and not here?
Thanks in advance,
Dave Wilson

Thanks for your response. I hate to be so dense, but I don't have a clue as to what an AVI container is.
Looking forward to hearing from you.
Dave

Similar Messages

  • Report won't run for mimetype=application/vnd.ms-excel

    Hi,
    My customers need to run reports in excel and type in parameters into the parameter from. The URL is:
    http://myServer/dev60cgi/rwcgi60?xyz+server=Repserv+report=rptName.rdf+destype=cache+paramform=yes+desformat=delimited+mimetype=application/vnd.ms-excel
    The parameter from shows up and all the LOVs are there, the reset botton works, the Submit Query botton only shows Submit (NO QUERY). The report won't run when I click on Submit botton.
    But it works perfectly if no mimetype=application/vnd.ms-excel in URL
    Can anybody help me to fix this ?
    Thanks

    The mimetype parameter was only introduced in 6.0.8.10 and above. What version are you running ?
    Thanks,
    Danny

  • QuickTime movies won't run on Web Gallery - asking for QT 7.2

    Hi
    I have this problem. When I try to visit my Web Gallery under Fire Fox and watch the movies I posted I got the message the to play this file I need to have QT 7.2. I have the latest version of QT installed and it runs without problems under Safari. Does anyone have the same problem. Is there any setting I can change to make QT work with Fire Fox?
    Thanks
    Mark

    You might do better to ask in the forums for QuickTime here:
    QuickTime
    There's a higher concentration of video gurus there, and they probably know of workabouts to your problem.

  • Privilege Movies won't run

    I live in Brazil. On december 2013 I redeemed de code sucessfully for my 5 free movies.
    Seen the movie options but could not decide and did not download because was without wifi or 4G.
    Tried to download the movies now and the app says it does not support my area! But it DID one month ago!

    i redeemed my 3 privilege movies. 2 movies are running fine but 1 movie "Moneyball " did not run. it showed the following error:
    "sorry, there's been a playback error. please try again. if you continue to get this message, delete and re download the movie. (-1-PRDY_MEDIA_ERROR_FAIL)
    i have downloaded this movie 4 times and each time it is showing the same error. please help me or provide me the option to choose another movie.

  • FireFox 8 won't run for 2 users at once on Windows 7 after update

    Firefox did an automatic update a few days ago. Since that update, if I login to my Win7 PC as me and have FF running, my wife cannot login with her account and run FF - it says FF is already running. Prior to the update, we could each run FF at the same time and switch between users with fast user switching. FF is the only app I have right now that is not working this way.
    What happened to multi-user support ?

    Check that Firefox isn't set to run as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program folder (C:\Program Files\Mozilla Firefox\).

  • Scripted movie won't run outside of firewall...open multiple ports?

    I'm new to Flash and AS3, but with the help of many examples I have managed to created a scripted movie using some time lapse photography.  I load the images from an XML file and use an event listener to add each image as a child of a movie clip.  As the number of children grew, it caused the frame rate to slow, so I figured out that I could remove them after they were viewed and just keep looping through the array.
    This works great on the local machine and when served up from the web server behind the firewall.  However,  if I try to access the file from outside the firewall, it loads the first image or two very slowly (if at all) then hangs.  I've performed a net stat from the server and noticed that it is opening an inordinate number of connections to the remote client on various client ports (from 6 to 60+).
    Any help would be greatly appreciated!  The code I'm using is below...
    // Input Parameters
    var ssxml:String = "myfile.xml"; // file containing images & dates
    // Stage settings
    var swfStage:Stage = this.stage;
    var swfFrameRate:int = 10;
    swfStage.scaleMode = StageScaleMode.NO_SCALE;
    //  Movie Clip
    var mc:MovieClip = new MovieClip();  // initiate movie clip
    mc.x      = 25;     // starting point X
    mc.y      = 50;     // starting point Y
    //  Text Field
    var tf:TextField = this.dtsText;
    // Cropping Rectangle
    var cr:Sprite = new Sprite();
    cr.graphics.beginFill(0x057072);
    cr.graphics.drawRect(25,50,550,7);
    cr.graphics.endFill();
    // Read Flash Variables
    try {
    var keyStr:String;
    var valueStr:String;
    var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
    for (keyStr in paramObj) {
      valueStr = String(paramObj[keyStr]);
      if (keyStr == "srcFile") {
       ssxml = valueStr;
      if (keyStr == "swfFrameRate") {
       swfFrameRate = int(valueStr);
       swfStage.frameRate = swfFrameRate;
    } catch (error:Error) {
    trace (error.message);
    *  Configure a loader to import the list of images and date
    *  time stamps from an XML file. The list of variables will
    *  be stored in arrays.
    var photos_xml:XML
    var xmlLdr:URLLoader = new URLLoader();
    xmlLdr.addEventListener(Event.COMPLETE, completeHandler);
    xmlLdr.load(new URLRequest(ssxml));
    var img_array:Array = new Array(); // images
    var dts_array:Array = new Array(); // date time stamps
    var img_count:int   = 0;
    function completeHandler(event:Event):void {
    try {
      photos_xml = new XML(event.target.data);
      var imgs:XMLList = photos_xml.img;  
      var dtss:XMLList = photos_xml.dts;    
      img_count = imgs.length();
      for (var i=0;i<img_count;i++) {
       img_array.push({src:imgs[i].text()});
       dts_array.push({src:dtss[i].text()});
    } catch(error:Error){
      trace(error.message);
    var nextImg:int = 0;
    var imgLdr:Loader = new Loader();
    imgLdr.contentLoaderInfo.addEventListener(Event.COMPLETE, doneLoad);
    imgLdr.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError);
    imgLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, updateInfo);
    stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
    function enterFrameHandler(event:Event):void {
    try {
             if (img_array.length > 0 ) {
       loadInitialImage();
    } catch(error:Error){
      trace(error.message);
    function loadInitialImage():void {
    imgLdr.load(new URLRequest(img_array[nextImg].src));
    function doneLoad(event:Event):void {
    var theImage:DisplayObject = event.target.content;
    imgLdr.unload();
    var bm:Bitmap = theImage as Bitmap;
    mc.addChild(bm);
    mc.scaleX = 550/640;
    mc.scaleY = mc.scaleX;
    addChild(mc);
    addChild(cr);
    tf.text = dts_array[nextImg].src;  
    if (mc.numChildren > 1){
      mc.removeChildAt(0);
    nextImg = (nextImg+1)%img_count;
    function loadError($event:IOErrorEvent):void {
    tf.text = "Loading Data.....Please Stand By..........."; 
    //  Loader Progress
    var swfTF:TextField = new TextField();
    swfTF.autoSize = TextFieldAutoSize.LEFT;
    swfTF.border = false;
    addChild(swfTF);
    //swfTF.text = "srcFile: " + ssxml + " FR: " + swfFrameRate;
    function updateInfo($event:ProgressEvent):void {
    swfTF.text =  "srcFile: " + ssxml + " FR: " + swfFrameRate
         + " Loading: " + img_array[nextImg].src + " "
         + Math.floor($event.bytesLoaded/1024)
         + " KB of "
         + Math.floor($event.bytesTotal/1024)
         + " KB.";

    OK I figured it out.  Apparently, the ENTER_FRAME event continues firing even as the image loader is processing.  Outside the firewall, where it was taking longer to load the images, this was causing loadInitialImage() to request the same image over and over again which resulted in the port behavior I was seeing on the server as well as the client "locking up".  The simple fix was to add a variable called currentImg (initialized to -1) which I set equal nextImg in loadInitialImage().  I then modified the if statement in enterFrameHandler() to only call loadInitialImage() if nextImg != currentImage.

  • Itunes 11.0.2 - downloaded - but won't run for install Windows 8

    Hi
    My iTunes wouldn't open after the last automatic update on 2/23 - so I uninstalled and have downloaded a fresh copy of the 11.0.2 SW.
    I can't get it to run though.
    I am the admin on the laptop
    I have attempted to RUN directly from the download site as well as saving a copy of the setup to run directly from my machine and looks like it starts but nothing happens.
    Suggestions?
    Thanks

    I tried everthing mentioned on the forum here across various posts
    uninstalling Office
    clearing browser history
    running install as administrator....
    I could go on but nothing worked so I rolled back to iTunes10.7 and that worked a dream. So clearly Apple is the problem not windows!

  • Itunes downloaded movie won't run anymore

    I upgraded my Macbook from Leopard to Mountain Lion and then upgraded iTunes.  Now when I download a movie off of the iTunes store and try and play it, the error message comes up that says:  This movie requires QuickTime, which is not supported by this version of iTunes.  What is going on here!!!?

    I am having the same problem right now and I can't seem to find an answer, I really wish I could help you :/

  • ITunes won't run for some reason... help me!!!

    I installed iTunes on my laptop in December 2005 (I got an iPod nano for Christmas). Recently, my laptop started making a funny clicking noise and, as the Best Buy guy said, "Your hard drive is shot." So, therefore, I have not been able to charge my iPod. I downloaded the updates for iPod on this desktop computer, but for some reason, iTunes wont show up. Do I have to download the software again? How do I get it working?? Please help me!!!
    eMachines   Windows 2000  

    for some reason, iTunes wont show up
    a few questions before proceeding.
    are you getting an error message? if so, what does it say? include error message numbers if you're getting any.
    or are you getting no error messages whatsoever when you try to launch itunes?
    if you're getting no error messages whatsoever, do you just see the wee hourglass for a few seconds, and then nothing? if so, do you also have Norton Internet Security 2005 installed on that PC?
    or are you seeing a brief "flash" of the itunes license screen (and then nothing)? if so, do you also see similar behavior when you try to launch your QuickTime?

  • Movies do not run and cover art is missing in iTunes Mac after sync with iPad

    I down load purchased movies from Apple to my iPad.  The movies runs fine and cover art is visible.  Great.  However, after I sync with my Mac Mini, the cover art on my iPad is missing.  The cover art in the iTunes library on my Mac Mini is missing, and the movies won't run on the Mac Mini.  Whe I re-sync, I get a message that says the movie can't sync because it can't be found.

    Is your album cover issue resolved?
    If not, have you perhaps tried to disable iTunes Match on your iPhone (in Settings) and signed out of your Apple ID (on the phone)? This might work.
    The issue seems to be that the iTunes Match server does not update all the tracks with the new album cover art, particularly if you added the covers some time after importing the CD's (remember then that there was no cover art on some of them!)
    Another possible solution is to rename the iTunes database (.itl file) by appending say "old" (without the quotes) and recreate a new one with maybe 1 or 2 albums, wait for the server to match the tracks (you can check on your iPhone after disabling and then re-enabling iTunes Match on the phone), then delete the 1 or 2 albums so that the iTunes music library is empty and wait again; you can check the iPhone again.
    Finally, quit iTunes, delete the latest database and rename the original database with its original name (by removing the "old" appendage).
    Then let iTunes Match reload the server with all the information: this might take a few minutes (hours?) depending on the size of the library.
    In the meantime you can remove all the music on the iPhone by disabling iTunes Match in the phone's settings.

  • Just bought new PC running Windows 8.1. I have Install discs for Photoshop 4 and an upgrade to Photoshop 7. Unfortunately the Photoshop 4 Install disc won't run as it's incompatible with 64 bit. How do I install Photoshop 7 on my new PC? Is there a place

    Just bought new PC running Windows 8.1. I have Install discs for Photoshop 4 and an upgrade to Photoshop 7. Unfortunately the Photoshop 4 Install disc won't run as it's incompatible with 64 bit. How do I install Photoshop 7 on my new PC? Is there a place I can download the Install files from?

    Pagemaker is ancient, obsolete and unsupported. It was discontinued over 10 years ago. (Though why it is still sold is a mystery.)
    If you want to run PageMaker, your best bet is to use a Win2K or WinXP PC.
    Otherwise move to Indesign or look at Serif's PagePlus or Scribus.

  • Install disk for ps elements 6 won't run on my laptop...what can i do?

    The install disk for PS Elements 6 won't run on my laptop.  What can I do?

    the oldest version of pse available from adobe is pse 7.
    so, your options (via adobe) are limited to purchasing pse 12 upgrade for $80, http://www.adobe.com/cart.html?marketSegment=COM&editSku=65224790

  • I MOVIE won't let me finalise the project. I am getting an error message saying..The project could not be prepared for publishing because an error occurred. (-50)

    I MOVIE won't let me finalise the project. I am getting an error message saying..
    The project could not be prepared for publishing because an error occurred. (-50)
    Can anyone help please and thank you! :-)

    See my suggestion about duplicating the project in this thread:
    https://discussions.apple.com/thread/4949234?tstart=0
    John

  • I just bought a MBA and I need to move my photos and itunes to an external hard drive (from my old MacBook Pro) because they won't fit on the Air.  I got the photos moved fine and I followed an online tutorial to move the necessary files for itunes, but i

    I just bought a MBA and I need to move my photos and itunes to an external hard drive (from my old MacBook Pro) because they won't fit on the Air.  I got the photos moved fine and I followed an online tutorial to move the necessary files for itunes, but it didn't work.  The files copied fine, but when I tell iTunes on the Air to look at the external drive for the library, it doesn't find anything.  What I copied was the entire iTunes Media folder.  So, how do I move the necessary iTunes files from my old Pro to a external drive so I can access them from my new Air?  Whew!

    iTunes- How to move the library to an EHD
    After you move the library you need to open iTunes by first depressing the OPTION key then launching iTunes. You will be given a choice of which library to use. This can then be made a permanent change, if you wish, in the Advanced section of iTunes preferences.

  • Have Photoshop Elements from 2001.  Got new computer with Windows 7 Professional 64 bit.  It won't run on my new computer.  What version is MOST SIMILAR to the old version I have, that will run on W7P-64?  Thanks for any help.  Popjer

    Have Photoshop Elements from 2001.  Got new computer with Windows 7 Professional 64 bit.  It won't run on my new computer.  What version is MOST SIMILAR to the old version I have, that will run on W7P-64?  Thanks for any help.  Popjer

    You should probably just download the trial version of pse 12 and see if you can live with it.
    Download a free trial or buy Adobe products | Adobe downloads
    That being said, have you tried to install pse 1 on your computer?
    How much free space is on your hard drive?
    Do you have Internet Explorer 10 or 11?
    Pse 1 can run on windows 7 x64, provided certain conditions are met.

Maybe you are looking for

  • [UEFI] Problem with efibootmgr on asus 1215b

    Keeping the story short: - Bought an asus laptop the last month ( Asus eeepc 1215b with AMD e-450 APU). - Verified that system has uefi, hard drive comes formatted with old mbr. - This past week i've been having fun: delleted all partitions, created

  • Need Help- OS system crashed

    During a device software update- the phone died and now all I get is a black screen and a red flashing light. Ii have tried to reconnect to desktop manager to restore but it will not find device on USB connection.  Tried rebooting windows but just ke

  • Unable to install vista sp2

    I have tried all update tools and still unable to install SP2.

  • Error in ProvABCSImpl_rev1.0/soa_0934b5cc-0c86-4044-8

    Getting given error during deployment of ProviderABCSImpl, Build is successful. *ORABPEL-05250[[ Error deploying BPEL suitcase.* error while attempting to deploy the BPEL component file "/oracle/product/Middleware/user_projects/domains/base_domain/de

  • How to resolve merge empty cells JS error

    Hi Scripters I am new to scripting and now looking into it. I am trying to write a table script for that, I found one merge empty cells JS from Jongware GfBROo table = app.selection[0]; if (!(table instanceof Table)) table = table.parent; if (table i