Quicktime Player "The operation could not be completed"

Hi I was wondering if anyone could help me, I just used the quicktime screen recording and after i finished it i tried to save it. It started saving but then it said "The operation could not be completed" I need help I don't know what this is and I've never seen it before. Also I have before been able to save it but for some reason this time i can't.  PLEASE HELP!

Sounds like a corrupted export.  Trash that copy and export it again.

Similar Messages

  • Quicktime - "Error: The operation could not be completed"

    I just took 1 and a half hours' worth of footage in quicktime screen recording, which I would rather not lose if possible. However, when I try to save the footage, it gives me the error listed in the title.
    I don't seem to have a problem with not being connected to a charger, running out of CPU, or having a weird copy of QuickTime (my quicktime is the version that came with the computer).
    Help?

    Terence,
    Youre a genius!
    It worked.
    (My machine was going to sleep while I was trying to export.
    I changed settings to prevent sleeping and the render completed.)
    Thanks for the help.

  • When I try to make a new video, a window comes up that says,"The operation could not be completed," and then under it, it says,"No other information is available about the problem," what is happening and how do I fix it?

    when I try to make a new video, a window comes up that says,"The operation could not be completed," and then under it, it says,"No other information is available about the problem," what is happening and how do I fix it?

    Hi
    And without info - it's near to impossibly to help. Try my general troubleshooting note:
    Troubleshooting note
    When iMovie doesn't work as intended this can be due to a lot of reasons
    iMovie Pref files got corrupted - trash it/they and iMovie makes new and error free one's
    problem in iMovie Cache folder - trash Cache.mov and Cache.plist
    Creating a new User-Account and log into this
    This forces iMovie to create all pref. and cache files new and error free
    Event or Project got corrupted - try to make a copy and repair
    a Codec is used that doesn't work (even though iMovie and/or iDVD tries to / they fail in the end)
    version miss match of QuickTime Player / iMovie / iDVD
    preferences are wrong - Repair Preferences
    other hard disk problem - Repair Hard Disk (Disk Util tool - but start Mac from ext HD or DVD)
    External hard disks - MUST BE - Mac OS Extended (hfs) formatted to work with Video
    ( UNIX/DOS/FAT32/Mac OS Exchange - works for most other things - but not for Video )
    USB-flash-memories - usually do not work
    Net-work connected hard disks - usually do not work (most often not fast enough and WRONGLY FORMATTES as DOS etc)
    iPhoto Library got problems - let iPhoto select another one or repair it. Re-build this first then try to re-start iMovie. When iMovie starts-up it first look trough this iPhoto library and if faulty it all Halt’s.
    This You do by
    First -  close iPhoto
    Secondly - on start up of iPhoto - Keep {cmd and alt-keys down}
    Thirdly - now select all five options presented
    THEN - WAIT a long long time (>20 hours are not strange)
    free space on Start-Up (Mac OS) hard disk to low (<1Gb) - I never go under 25Gb free space for SD-Video (4-5 times more for HD)
    external devices interferes - turn off Mac - disconnect all of them and - Start up again and re-try
    GarageBand fix - start GB - play a few notes - Close it again and now try iMovie
    Screen must be set to million-colors
    Third-party plug-ins doesn't work OK
    Run "Cache Out X", clear out all caches and restarts the Mac
    Let Your Mac be turned on during one night. At about midnight there is a set of maintenance programs that runs and tidying up. This might help
    Turn off Your Mac - and disconnect Mains - for about 20-30 minutes - at least this resets the FireWire port.
    In QuickTime - DivX, 3ivx codec, Flip4Mac, Perian etc - might be problematic - temporarily move them out and re-try
    (I deleted the file "3ivxVideoCodec.component" located in Mac HD/Library/Quicktime and this resolved my issue.)
    buenrodri wrote
    I solved the problem by removing the file: 3ivxVideoCodec.component. after that, up-dated iMovie runs ok.
    Last resort: Trash all of iMovie and re-install it
    Yours Bengt W

  • I cannot "save" my newly reduced size video after using the "TRIM" feature...I get "The Operation could not be completed". Why?

    I would start with my original AVI file, then hit duplicate to get a duplicate file to work on....I then would use the "TRIM" feature to shorten the video. Then when I hit "close", and it prompted me to name the newly reduced file, and saved it appropriately.So I did this procedure with two of my AVI format videos and it worked flawlessly.
    But I have tried to do this same procedure with a half a dozen more AVI videos and it will not allow me to name the modified file after I have "trimmed it" and save it...when I enter the name for the modified file and hit "close", I get the message "The operation could not be completed".  Why isn't it allowing me to save the files??
    (I am working with OSX 10.7.3, Quicktime Player 10.1   iMac 3.06GHz Intel Core i3)

    my os is windows 7.  elements 12 worked fine for many months then save for the web stopped working

  • Set name of file - 'the operation could not be completed'

    I have a script (see below) that is supposed to rename a list of files that have been recently saved as self contained by Quicktime Player in a script just run prior to this script .
    What happens is that if the script is run immediately after the Quicktime Player script it generates a dialog with the message 'The operation could not be completed'. It was puzzling since the script would occasionally work as I tested it on its own in script editor.
    After much trial and error messages I discovered that if
    1. I run the Quicktime Player script saving the movies; Then
    2. manually open the folder containing the movies in the finder, then
    3. run the script to rename the movies,
    the script would run correctly. If I don't open the folder the script fails with the 'the operation could not be completed' dialog.
    Any ideas as to why this happens? Any workarounds suggested?
    Thanks
    Martin Koob
    set movies_list to {"G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    set total_segments to "3" as integer
    tell application "Finder"
    try
    activate
    display dialog total_segments
    repeat with current_segment from 1 to (total_segments)
    set AppleScript's text item delimiters to ","
    set thismoviepath to item current_segment of movies_list
    set AppleScript's text item delimiters to ":"
    set thisfilename to the last text item of thismoviepath
    set name_length to the length of thisfilename
    set AppleScript's text item delimiters to ""
    set newfilename to the characters 3 thru name_length of thisfilename
    set the name of file thismoviepath to newfilename as string
    end repeat
    on error errormessage
    display dialog errormessage
    end try
    end tell

    Hello
    Finder has been affected by its long standing bug or design flaw in updating its internal cache, which seems relevant to your case.
    Here's two sample codes I'd try.
    Hope this may help,
    H
    PS. Why are you renaming files after saving them in different names? Saving them in the final names in QT Player would be the simplest way. Just my thought.
    -- SAMPLE1
    set pp to {"G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    try
    set AppleScript's text item delimiters to {":"}
    repeat with p in pp
    set p to p's contents
    set n to p's text item -1 -- original file name
    set n1 to n's text 3 thru -1 -- new file name
    set dp to "" & (p's text items 1 thru -2) & ":" -- container path
    tell application "Finder"
    (* code to evade Finder's bug by 'update' *)
    update item dp -- update container status
    --update item p -- update file status (may not be necessary)
    set name of item p to n1 -- rename file
    end tell
    end repeat
    set AppleScript's text item delimiters to {""}
    on error errs number errn
    set AppleScript's text item delimiters to {""}
    display dialog errs & " " & errn
    end try
    -- END OF SAMPLE1
    -- SAMPLE2
    set pp to {"G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A1.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A2.mov", "G-DRIVE:Videobook Projects:august 20 test 7:m-august 20 test 7A3.mov"}
    try
    tell application "Finder"
    repeat with p in pp
    set a to p as alias
    (* code to evade Finder's bug by 'update' *)
    update a's container -- update container status (may or may not work)
    --update a -- update file status (may or may not work)
    tell item a
    set name to (get name)'s text 3 thru -1
    end tell
    end repeat
    end tell
    on error errs number errn
    display dialog errs & " " & errn
    end try
    -- END OF SAMPLE2

  • IMovie error message "The operation could not be completed"

    I am trying to create a new movie and got this error message " The operation could not be completed" after selecting the Themes.
    Any suggestions?
    Thanks

    My problem was because I had moved my Movies folder from the system drive (which is an SSD) over to another drive with a larger capacity. I then created an Alias in my home folder.  Turns out this is what was causing the problem. I shoulda known. Some apps absolutely hate this. iMovie, being the dumbed down garbage that it is, simply MUST have it's library in a certain folder, apparently. Would be nice if we had a choice about it.
    I find Premiere Elements is actually the better (and friendlier) program. However in this case, I had to slum it with iMovie due to the Quicktime file I was working with.

  • The operation could not be completed because an error occurred when creating frame 19788 (error -1).

    When attempting to build a quicktime movie from my video project on final cut pro I got this message    "The operation could not be completed because an error occurred when creating frame 19788 (error -1)".

    Kathy ...
    Better to post your topic in the Final Cut Pro community here.

  • Please help i can't share my project I did try in all of them and it doesnt work it apears like that........ The share operation Master File has failed The operation could not be completed because an error occurred when creating frame 608 (error -1). and

    I did try in all of them and it doesnt work it apears like that........
    The share operation Master File has failed
    The operation could not be completed because an error occurred when creating frame 608 (error -1).
    and i dont know what to do plese hlp me....
    Re: when i try to share my project to quicktime aroun 50% appears error -1 and i can't share it what to do please help 

    Double post…

  • Error while consolidating. The operation could not be completed.

    Error while consolidating. The operation could not be completed. Cocoa error 13. (null)
    Got this when I was trying to consolidate some referenced photoshop files. If failed to create a new version as well when I tried to open the files in Photoshop. I rebuilt the the library and it displays and exports both masters and version just fine, but it won't let me consolidate the master to the library.
    What gives?

    I think that error was due to the fact that I hadn't upgraded MAC OSX after installing it. I have done that now and now I get another error saying the masters are offline.
    I found this old thread: https://discussions.apple.com/thread/1965601?start=0&tstart=0 which seems to be the same problem. This is a whole other topic so I will start a new thread, but leave this in case anyone gets the same problem as me. Upgrade your OSX. That's the solution :-)

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • The save for the web function has stopped working in my copy of photoshop elements 12.  I get this message, " The operation could not be completed.  The system cannot find the path specified" Resetting preferences did not fix.

    The save for the web function has stopped working in my copy of photoshop elements 12.  I get this message, “ The operation could not be completed.  The system cannot find the path specified” Resetting preferences did not fix.

    my os is windows 7.  elements 12 worked fine for many months then save for the web stopped working

  • The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    https://discussions.apple.com/thread/6219522

  • The operation could not be completed because an item with the name xyz already exists

    I am trying to make a click and drag backup on an external FAT 32 drive to compliment my Time Machine backup (long story) and I've done this each time by dragging my critical folders into the drive. I get a message asking me to stop, replace or skip, and whether to apply to all items. i click replace, apply all, and let it go.
    however, one stubborn folder refuses to comply. every single time I click and drag a group of folder that includes that one, I get a message saying "the operation could not be completed because an item with the name xyz already exists" even after I selected the the "apply all" prompt. at which point, the Mac stops transferring ALL the other files.
    I figured, OK, i'll just transfer the other folders individually and then deal with this folder later. so I do that, and once I get to the offending folder, I try to transfer just that one folder into the drive. no good; I get the operation message again. I decide to just transfer the contents of the folder, rather than the folder itself. No good, I just get the operation message about one of the folders within the main folder.
    anyone know the cause, or at least a fix?

    If you've installed a system modification called "TotalFinder," remove it according to the developer's instructions after backing up all data. Log out, log back in, and try again.
    Otherwise, open the Info dialog on both the source and the destination volumes. What is the Format of each? For example, it might be "Mac OS Extended (Journaled)".
    For some other possible solutions, see:
    operation can't be completed because an...: Apple Support Communities

  • 'The operation could not be completed. Access is denied' during delete.

    Hello World,
    Something happened while working in my Visual Studio 2010 Professional environment.
    When I delete a member from my Solution Explorer, it disappears from the memberlist, is marked as 'locked, deleted' and can be removed from TFS using Check-In. But during the delete process I get the message 'The operation could not be completed. Access
    is denied.'
    I'm an Administrator on my computer (manually adding/deleting members in my workspace and/or directly in TFS is not a problem). I get this message for every delete I perform, even in other Solutions!
    The member will remain in my workspace however. 
    Can anyone help me with this problem please?
    Thanks,
    Guy Swagen
    Microsoft Visual Studio 2010
    Version 10.0.40219.1 SP1Rel
    Microsoft .NET Framework
    Version 4.0.30319 SP1Rel
    Installed Version: Professional
    Microsoft Office Developer Tools   01018-532-2002181-70270
    Microsoft Office Developer Tools
    Microsoft Visual Basic 2010   01018-532-2002181-70270
    Microsoft Visual Basic 2010
    Microsoft Visual C# 2010   01018-532-2002181-70270
    Microsoft Visual C# 2010
    Microsoft Visual C++ 2010   01018-532-2002181-70270
    Microsoft Visual C++ 2010
    Microsoft Visual F# 2010   01018-532-2002181-70270
    Microsoft Visual F# 2010
    Microsoft Visual Studio 2010 Team Explorer   01018-532-2002181-70270
    Microsoft Visual Studio 2010 Team Explorer
    Microsoft Visual Web Developer 2010   01018-532-2002181-70270
    Microsoft Visual Web Developer 2010
    Crystal Reports Templates for Microsoft Visual Studio 2010   
    Crystal Reports Templates for Microsoft Visual Studio 2010
    Java language support for Visual Studio   1.0
    Java language tools for Visual Studio includes IntelliSense and more... eventually...
    Java project support for Visual Studio   1.0
    Java project system for Visual Studio
    Micro Focus Enterprise Developer Team Edition 2.2   Serial number: xxxxxxxxxxxxxxxx
    Micro Focus Enterprise Developer Team Edition 2.2 Version 2.2.01204.
    Serial number: xxxxxxxxxxxxxxxx Full license
    For more information, visit http://www.microfocus.com.
    Copyright (C) Micro Focus 1984-2014. All rights reserved.
    Micro Focus Rumba Integration   1.0
    Micro Focus Rumba Integration is a Visual Studio package which provides connectivity to Mainframes.
    Microsoft Team Foundation Server 2010 Power Tools   10.0.41206.0
    Power Tools that extend the Team Foundation Server integration with Visual Studio.
    Microsoft Visual Studio 2010 Professional - ENU Service Pack 1 (KB983509)   KB983509
    This service pack is for Microsoft Visual Studio 2010 Professional - ENU.
    If you later install a more recent service pack, this service pack will be uninstalled automatically.
    For more information, visit http://support.microsoft.com/kb/983509.
    Microsoft Visual Studio 2010 SharePoint Developer Tools   10.0.40219
    Microsoft Visual Studio 2010 SharePoint Developer Tools
    Microsoft Visual Studio Process Editor   1.0
    Process Editor for Microsoft Visual Studio Team Foundation Server

    Hi GuySwagten,
    Based on your description, the files you're trying to delete are locked by other team members of your team project in server workspace. You can have a check with your team members or check the hisotries of the files to see the lock information.
    Please refer to this
    page to get more information about TFS lock types. And you can ask the team member to unlock the files if you want to delete them or do other operations.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • The Operation could not be completed. No other information is available about the problem.

    MAC OSX 10.8.5
    Processor 2.7 GHz
    Memory 4GB1333 MHz DDR3
    Logic Pro 9.1.8 (1700.67) 32 BIT
    "The Operation could not be completed. No other information is available about the problem."
    Uploaded on google drive a series of project files. downloaded them and now the message above is what pops up effectively blocking me from my work. After talking with google support, they confirmed the successful upload and download with no file corruption. All file extensions are the same. Can someone please help.
    Sincerely,
    Butta Love

    Try the following..
    Compress the audio files before uploading them to Google.. using Apple's built in file compressor... (Right/Control click on an audio file and choose compress from the popup menu...
    Download from Google and then decompress audio files..
    Now test in Logic and see if you get the same issue....

Maybe you are looking for

  • Coalesce or compress this index? what is the best solution in this case?

    BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64biI have executed the following query on a specific index that I suspected to be smashed and got the following result select     keys_per_leaf, count(*) blocks from (         select

  • Saving bookmarks in the new ABAP editor?

    Hi experts, either I'm stupid or something but I don't see how I can save my code boomarks for future usage. I mean the bookmarks which can be created by CTRL + ALT + number and navigation to them by CTRL + number. The similar problem I have with sav

  • IMac 2012 or Mac Mini

    I'm hoping in 2013 to update my early 2009 24inch iMac (2.66Ghz Intel Core 2 duo - 4Gb Ram - 640Mb h/drive). My present iMac seems slow at times, particularly when I have to amend large psd files (about 300-400 Mb) so I want something that will speed

  • Says my Wifi password incorrect all  of a sudden

    I've been using my ipad (newest version) for 6 months with no Problem- all of a wifi says password is incorrect..my network is recognized and every other wireless thing we have in the house works fine- I've tried rebooting router, resetting all thing

  • One hot mail e mail account the screen/font is too big

    I have multiple e mail accounts that are linked. One of the accounts now has a font size too big for the screen. I cannot view anything without moving the bars up and down or left and right. Very annoying. When I go that e mail account with internet