Save file just created in QuickTime, How???

I create new file (AAC, audio) in QuickTime by paste some tracks into one QT-document. Then I need to save this new soundtrack. I do following:
tell application "QuickTime Player"
tell application "Finder"
set the temp_folder to (make new folder at desktop with properties {name:"_JoinToAudiobookTempfolder_"}) as alias
end tell
set the new_file to ((temp_folder as text) & "temp_file")
(* Some Code *)
save movie 1 given «class dfil»:file new_file, «class savk»:self contained
end tell
But QT doesn't save file on folder "_JoinToAudiobookTempfolder_" on Desktop! It shows windows "Save File As" and wait that I specify location and file name! Why?

I understand. So, I decided to change the order of
processing :-)) At first I'll join mp3's in QT, and
than convert created track into AAC using iTunes.
You can do that, but if you can do everything with QT, then why bother with iTunes?
Another question - i don't want quicktime to show
"Welcome Movie". So, i need to disable this feature
or temporary turn it off. I tried use this:
tell application "QuickTime Player"
set show welcome movie automatically to false
end tell
But this not works. So, ... how?
show welcome movie automatically is a read-only property, so you can not set it.
You can disable it in QT's Preferences --> Show Content Guide automatically
PS. That too bad that applescript application's
library doesnot contain live examples.....
No you don't want that. Things will get bloated.

Similar Messages

  • When trying to download iTunes for Windows XP Service Pack 3, I receive the message "You have chosen to open iTunesSetup.exe" "Would you like to save this file?".  When I select Save File, nothing else happens.  How do I continue to install iTunes?

    When trying to download iTunes for Windows XP Service Pack 3, I receive the message "You have chosen to open iTunesSetup.exe" "Would you like to save this file?".  When I select Save File, nothing else happens.  How do I continue to install iTunes?

    See the further information area of Troubleshooting issues with iTunes for Windows updates.
    tt2

  • When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    Using command creates a copy.
    If you want to just move a file, click on it, hold it and drag it to the new location.

  • Keynote creates separate audio and image file when exporting to quicktime, how can you create one unique file?

    I have a Kenote 09 presentation with a presentation soundtrack, when I export it to Quicktime two files are created one with audio and one with video.
    ¿Is there a way to have this be just one file or to combine this files to have one video+audio file?
    I was able to put them together with iMovie, but the image looses quality.
    Thanks

    Thanks Gary
    I tried fixed timing but I needed different timing for each slide. But I did manage to resolve using the following.
    Since the audio was just music I first set both Input and Output sound setting in preferences to use Soundflower instead of internal mic and speaker, then played the presentation while recording audio so that the music would be recorded. And finally exported using Recorded Timing. This way the output was one unique file!
    Good day

  • Getting a SAS URL by just creating a locator - how?

    I have code from a very helpful blogger that shows how to use JavaScript to upload to Azure. This means that he has created a webpage that will let any user who accesses it upload a file to a blog on his Azure storage. However, I want the user to upload
    a video file to my "Azure media services" and not just to a regular "blob".  I'm actually not sure this is necessary, because I think videos can be viewed when just uploaded to standard blobs without even using media services. 
    But I asked him how he would do it, and he said:
    1. create an asset in media service
    2. For that asset, create a locator with write permission
    3. Use that locator to give you a SAS URL.
    His JavaScript webpage asks the user to enter a SAS URL, but if I can use Visual Basic code in the code-behind page to generate a SAS URL, I don't have to ask the user to know it.  Also, it lets me use media services.
    So I looked at the sample code that Microsoft provides for uploading to media services, and I have a few questions.  So here is a fragment of code and then the questions:
    Public Function CreateAssetToGetSASurl(assetCreationOptions As AssetCreationOptions, singleFilePath As String) As IAsset
    Dim theDate As DateTime
    theDate = Now
    Dim strDate As String
    strDate = Replace(CType(theDate.ToOADate, Double).ToString, ".", "_")
    Dim assetName = "UploadSingleFile_" & strDate & "_" & keepalphanum(Session("username"))
    Dim asset = CreateEmptyAsset(assetName, assetCreationOptions)
    Dim fileName = Path.GetFileName(singleFilePath)
    Dim assetFile = asset.AssetFiles.Create(fileName)
    Dim Duration As TimeSpan = lifetime
    Dim accessPolicy = _context.AccessPolicies.Create(assetName, Duration, AccessPermissions.Write Or AccessPermissions.List)
    Dim locator = _context.Locators.CreateLocator(LocatorType.Sas, asset, accessPolicy)
    ' locator.Delete()
    ' accessPolicy.Delete()
    Return asset
    End Function
    I believe the locator created above is correct, but I think I should get rid of the lines that do this:
     Dim fileName = Path.GetFileName(singleFilePath)
            Dim assetFile = asset.AssetFiles.Create(fileName)
    After all, I'm not uploading a file from my server, instead I'm relying on javascript code to upload a file.  So I would think I could get rid of these 2 lines, but I'm not sure my locator then points to anything. 
    I also don't know how to get the SAS at this point.
    Finally, there are two lines at the end of the function that delete the locator and the access policy, but I assume that if I do that, my SAS URL is no longer valid.  So my question is, when would I delete the locator -- after I was sure the file was
    uploaded?  After it was encoded?
    Thanks in advance,
    Gideon

    Hi,
    I would suggest you have a look at this code sample. From the description we can see the introduction.
    Details:
    Introduction
    The c# code in this project uses Windows Azure Storage SDK, Windows Azure Media Services Client SDK, and Media Services REST APIs to demonstrates the following:
    •how to upload a stream to the storage blob associated with the Windows Azure Media Services account
    •how to associate the file in the blob with the asset using the Media Services REST APIs.
    •how to get a SAS URL pointing to the uploaded file. 
    From my experience, this sample may give you some help.
    #Sample Code:
    http://code.msdn.microsoft.com/windowsazure/How-to-Upload-a-Stream-to-40ab9cc3
    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.

  • How to open and save file like the Notepad Demo do?

    I am a newer to Java Web Start. I found that in the Notepad Demo, when user try to open or save file, a message box appear and give the user some security suggestions.
    In my application, I used a JFileChooser and set the <security> element to <j2ee-application-client-permissions/> in the jnlp file. But the application will thow an exception:
    access denied (java.io.FilePermission C:\Documents and Settings\Administrator\desktop\Java Web Start.lnk read)
    Can someone tell me how to solve this problem. By the way, where can I find the source of the Notepad Demo. I want my application to open and save file just like the Notepad Demo do.

    The Notpad demo uses the JNLP api to read and write files. The api doc can be found at:
    http://java.sun.com/products/javawebstart/docs/javadoc/index.html
    Although the Notpad demo source is not available, there is other sample code available at:
    http://developer.java.sun.com/developer/releases/javawebstart/
    Included here is the webpad demo, which uses the FileOpenService and
    FileSaveService API's.

  • I imported an hour of video into iMovie HD and cut it down to a 33 sec clip, and emptied the trash.  When I save the project, the file size is 20Gb.  How can I save just the 33 sec clip?

    I imported an hour of video into iMovie HD and cut it down to a 33 sec clip, and emptied the trash.  When I save the project, the file size is 20Gb.  How can I save just the 33 sec clip?

    Non-destructive editing is an important feature of iMovie HD 6.
    iMovie preserves the entire copy of every clip you place into your movie in case you change your mind at a later stage.
    So, if you have cut out one minute from a 45 minute clip, iMovie will have stored two complete copies of that clip. This is why is helps to set import as 3-5 minute clips rather than one huge chunk. As DV runs at 13GB per hour your project files can get very big.
    One workaround is to complete the editing of a section of the movie, then export that to Quicktime: highlight the clip/s, choose Share-Quicktime, turn on Share selected clips only, and choose Full Quality from the pop-ip menu.
    Once you have saved the stand-alone clip to your hard drive, you can re-import it into your project using the File/Import command, and delete the original long clip/s from the project.

  • How to change the default save encoding of the dvm files when create dvm???

    When I creating a DVM(domain-value mapping) in Chinese on the ESB control and confirm it, then restarted the SOA service, the DVM that I created in Chinese disappeared from ESB control. All the maps(both English and Chinese ) are in DVM Repository.
    After I updated the encoding from ‘UTF-8’ to ‘GB2312’ in the three files below, and restarted the SOA service, the DVM in Chinese appeared on ESB control.
    But when I adding the second row in Chinese and save it, then restart the SOA service, the DVM in Chinese disappeared from ESB Control once again. Because the encoding in the three files below is updated from ‘GB2312’ to ‘UTF-8’ .
    Files:
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\metadata\files\dvm\Chinese.xml.def.xml
    C:\product\10.1.3.1\OracleAS_1\integration\esb\oraesb\artifacts\store\content\files\dvm\Chinese.xml_1.0
    How to change the default save encoding of the dvm files when create dvm in ESB control ???

    I have the same problem.  When I updated to Mavericks now the bookmarks bar font is huge.  I liked it the way it was before.  I liked the smaller font.  Also wish I could change the color of the sidebar and font/folders too.
    I tried to see in preferences if there was anyway to change it, but I don't see anything there.

  • I just created a slide show with iPhoto 11 on my MacBook Air.  How do I save this to a DVD on my external drive so that it will play on a DVD player?

    I just created a slide show with iPhoto 11 on my MacBook Air.  How do I save this to a DVD on my external drive so that it will play on a DVD player?

    Hi
    If there is no iDVD on Your Mac (and it's not on newer Macs as Apple discarded it) then You need a program that can do this.
    Your Mac can burn CDs and DVDs - BUT DVD as Data-DVDs not as Video-DVDs - they need a program to be encoded and STRUCTURED as such.
    • iDVD is part of the boxed version of iLife'11 and can only be bought outside Apple as on Amazon and e-bay
    • DVD Studio pro - Part of FinalCut Studio Pro bundle - this to has expired and can only be bought second handed. (High price and tough learning Curve - but best ever done.)
    • Roxio Toast™ - Not as elegant as iDVD - but has many other positive additions (I like it as 10-Pro incl BD-component) (now version 11)
    • Burn - only free alternative I know of on internet. Very simple - Just for doing a plain Video-DVD
    Burn http://www.digital-digest.com/software/Burn.html
    only You can buy from Apple is
    • FinalCut Pro-X which also can burn to DVD but without any nice themes.
    AppleMan1958
    You can also buy Compressor from Apple for $50 US. It will also create DVD and BluRay but without the nice themes.
    Yours Bengt W

  • I just want to know how to save some of the music manuscript i have created under songwriting, in to a format that I can email to a non-apple PC so that they can print it for me. How

    I just want to know how to save some of the music manuscript i have created under songwriting, in to a format that I can email to a non-apple PC so that they can print it for me. How would I do that?
    Thank you,
    Peter Michaels.

    And you just like helping people?
      That is just the way this forum works - users get help from other users and learn from others and like to contribute if they see they can help.
    My latest challenge was typing in melodies and chords of songs I'd written on the piano. But using the Musical Typing in register C3 I inserted all the notes by playing on the imac keyboard (and written in the treble clef). The only problem is you cant insert the chords at the same time. Now I have an empty bass clef, which requires chords be inserted in register C2 and I dont know yet how to do that.
    To fill in the chords: Join a melody track and a bass track, like this:
    - Create a new software track and record the chords separately with musical typing.
    - Create a new track and copy your melody loops there (just as backup, if something goes wrong)
    - Do the same with the track containing the chords.
    - Then select all loops in the copies of the melody track  and the copy of the chords track and select from the main menu
           Edit -> Join.
    Now you should have a track that contains the bass as well as the melody and both staffs should be filled in the track editor, so you can print both at the same time.
    However, there will be some notes assigned to the wrong staff - very low melody notes will appear in the bass cleff, very high chord notes will appear in the melody cleff - and I don't see how you could fix that in GB.
    Good luck
    Léonie

  • How to create a multi-page view PDF from Ai save file.

    Dear all.....
    Good day!
    I wish that some one can help (answer) me on the save file from ai to PDF as multi-page view.
    I have log in the adobe follow the instraction, but, still can't fine the way to select from the <save type> as multi page,
    * Selact the "Create Multi page PDF" is the something when's wrong?
    my purpose is to view it in Adobe Reader as scrolling Multi page1 page2 and page3.....
    Please help......
    Best Regards
    David Chan

    You are in the wrong forum. Adobe Reader can't create PDF documents. Try the forum for Ai.

  • Microsoft Office 2004 (Word) unable to save files  I have been running Office 2004 on my Intel iMac with Snow Leopard for some time and all of a sudden I cannot save a document. Word just stopped responding and I have to force quit. I can open Word and cr

    Microsoft Office 2004 (Word) unable to save files
    I have been running Office 2004 on my Intel iMac with Snow Leopard for some time and all of a sudden I cannot save a document. Word just stopped responding and I have to force quit. I can open Word and create a new document but I cannot save it. I reinstalled Word but that didn’t help. Then went to the Internet and found at least one other Mac user having the same problem which it suggests is caused by a recent Mac Security Update:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2004-macword/word-2004-wil l-not-open-or-save-documents/b04eb870-9b0d-4f3b-bb47-b122301e36f6
    So I check for a new Mac Security Update and sure enough there was one. I downloaded it and now Word seems to be working, as it should. I can both open and save files. The only problem remaining is that when I open Word I get the following error message “An unexpected error occurred while trying to load the Microsoft Framework library”. I contacted Apple but they were unable to help.
    How can I get rid of this error message?

    Look, I realize you might have to get your machine working, so this is how you revert back.
    Restore proceedure to pre-Security Update 2012-001 v 1.0 & v 1.1
    #1 Backup your personal data off the machine.
    Backup files off the computer (not to TimeMachine). If you don't have a external drive, get one and connect to the USB/Firewire port and simply drag and drop copy your User folder to the external drive, it will copy all your files. It's best to have two backups of your data off the machine when trying to restore.
    Disconnect all drives now to prevent any mistakes from occuring.
    #2 Reinstall OS X 10.6 from disk
    Get out your 10.6 install disk and make sure it's clean and polished (very soft cloth and a bit of rubbing alcohol, no scratches) If your disk is borked, you'll have to order a new one from Apple with your serial number.
    Hold c boot off the 10.6 disk (wired keyboard, internal optical drive), use Disk Utility First Aid to >Repair Disk  of your internal drive  (do not format or erase!!), Quit DU and simply re-install 10.6.
    Note: Simply reinstalling 10.6 version from disk (without erasing the drive) only replaces 10.6.8 with 10.6.x and bundled Apple programs, won't touch your files (backup anyway)  or most programs, unless they installed a kext file into OS X itself. (only a few on average do this)
    #3 Update to 10.6.8 without Security Update 2012-001 v1.0 or v1.1
    Reboot and log in, update to 10.6.8 via Software Update, but EXCLUDE THE Security Update 2012-001 by checkinig the details and unchecking the blue check box.
    #4 Reinstall any non-working third party programs
    When you reboot, make sure to reinstall any programs that require kext files installed into OS X, you'll know, they won't work when you launch them or hang for some reason as they are missing the part they installed into OS X.
    If for some freakish reason you get gray screen at any time when booting (possible it might occur when you reinstall older programs), hold the shift key down while booting (Safe Mode, disables kext files) and update your installed third party software so it's compatible with 10.6.8.
    https://support.apple.com/kb/TS2570
    That's it really.

  • SINCE INSTALLING I.E. 11 IN WINDOWS 7, UNABLE TO DOWNLOAD OR SAVE FILES IN FIREFOX; HOW DO I CORRECT THIS PROBLEM?

    This is what I wrote to the Microsoft Community seeking a correction of the issue (still no reply to my request for assistance with this matter from them):
    Can I go back to I.E. 10? Ever since I installed version 11, I've had an unstable desktop. It appears to have damaged the Windows Explorer interface in other browsers, such that when I open the popup window to save downloads and/or other files, all that shows up in the window are the "Save" and "Cancel" buttons, but it does not show the interface to choose where to save the file(s), thus I cannot save anything at all in those other browsers. I primarily use Firefox, and every time I want to save a file, I have to startup I.E. 11 to save anything and everything.
    I would much prefer going back to I.E. 10 which caused me no such problems; but, if I cannot go back to I.E. 10, how do I correct this issue so I can save files in other browsers? This situation has been going on for months now, and I've waited patiently thinking that there would be an update for Microsoft and/or Firefox (as well as Chrome and Safari) that would correct this problem by now; but, even though I have all of the latest updates and versions installed, no updates have corrected the issue at all. I would very much appreciate any help you can give.
    Oh, also, I have tried uninstalling Firefox completely at least twice, and rebooting before reinstalling it to the latest version, but that has not corrected the problem either. I additionally tried turning I.E. 11 off in Windows, and then tried running Firefox to see if the download interface would be restored, but it still had the very same issue(s) [no ability to choose the place to save files, and thus being completely unable to save any downloads and/or other files]. I can't believe that this problem has been going on for so long now without any update(s) resolution.

    The following is the latest that I've written to Microsoft about this entire matter:
    You're still not getting it. I've never had a problem with downloading and/or saving files in I.E.; and I very clearly explained to you guys that the problem is in the other browsers, but it's caused by a malfunction in the Windows Desktop.
    Why can't someone with English as their first language, please help me?
    But, regardless, just in case your recommendation(s) had anything to do with anything, and were perhaps creating the problem in the other browser (though I was pretty sure that it had nothing to do with my problem), I made I.E. the default browser; yet, of course, that did NOT correct the problem. Also, when I set I.E. as the default browser, the explorer.exe file crashed and restarted.
    Nevertheless, because I (wrongly) thought that I couldn't uninstall I.E. 11, because somehow I missed the listing for it in Windows Programs and Features, I went to the latter again and found I.E. 11 listed this time, and uninstalled it. After it completed, I rebooted the laptop. Then I went into Windows Update and looked for what version of I.E. it was then going to want me to update to since I.E. 11 was uninstalled.
    I saw that I.E. was taken all the way back to I.E. 8 and had updates for it as well as to update to I.E. 9, so I did the former updates first, rebooted, then updated to I.E. 9 and rebooted again. Then I ran Windows Update again checking for new updates, and found that there was a cumulative security update for I.E. 9, which I installed and then rebooted once again.
    Then, upon checking for new updates in Windows Update again, I found that the option(s) to update to I.E. 10 or 11 were now optional, which they weren't before, and then I updated to I.E. 10 and rebooted once more. Upon Windows restarting, I checked again for new Windows Updates and there were some security updates, so I installed them and restarted the laptop.
    This time upon rebooting, I checked Windows Update for further new updates and there were none; so I'm now completely updated to I.E. 10; but, because going back to I.E. 10 corrected some of the instability with the Windows Desktop, I am ignoring the optional update to I.E. 11, and I am NOT going to update to it again.
    Throughout the update process, upon restarting Windows, I kept starting Firefox to see if the "Save As" window then worked, but throughout the entire update process, as well as when I completed it, I still could not download or save files [because the window still doesn't show where to save the file(s)---please see the Print Screen copy of what it looks like, attached to this message (sorry, but I.E. won't let me browse for the file, and the tab or windows crashes and reloads every time when I click "Browse" to look for the file to attach)].
    So, I decided to try uninstalling Firefox for the fourth time, rebooting and reinstalling it, hoping that might correct he issue this time since I downgraded to I.E. 10, but the "Save As" window still looks the same, and I am still completely unable to save any files or downloads while in Firefox.
    Oh, I also tried resetting all of the Windows Folder Options again to default settings, and reset all of the folders, in case that had anything to do with the problem, but that still did NOT correct the issue either.
    I am now going to try creating a new user account also with Administrator privileges, changing Users, trying to run Firefox in it, and see if the problem with the "Save As" window is still an issue....
    In the new User profile, the situation is even worse. When I try to save any file(s) in Firefox, Firefox crashes (latest version).
    I wrote to Firefox a couple of days ago, but an arrogant "techie" is giving me the run around and is not helping me, and no else is helping with the matter so far.
    Postscript: Now Windows Explorer (the explorer.exe file) that runs the desktop crashed and restarted again twice while I was trying to print a file, and it appears that it won't let me print at all anymore.

  • I just created a slideshow dvd in imovie, and when I hit finalize it said that it would take 7 hours to finalize.  I've only had my macbook pro for 6 months, and this is the first imovie I've done...is this normal?  If not how can I speed up this process?

    I just created a slideshow dvd in imovie, and when I hit finalize it said that it would take 7 hours to finalize.  I've only had my macbook pro for 6 months, and this is the first imovie I've done...is this normal?  If not how can I speed up this process?  Thanks in advance for all of your help!

    Hi
    Time needed can depend on several things.
    • less than 5 GB free space on Start-up (Mac OS) hard disk = Redicolous long times AND a DVD that most probably will not work OK
    Medicine - I never go under 25GB free space
    • Use of strange file formats into iDVD - can force it to de-code first then re-encode - this can take long long times
    I use
    Video - StreamingDV as from miniDV tape Cameras - or QuickTime Movies Converted to StreamingDV
    Audio - .aiff 16-bit 48 kHz - (no .mp3, .wma etc)
    • Use of old Mac - My G4 600MHz took about 24 hour per hour movie. my dG5 - about 2 hours per hour (I use Pro Quality encoding)
    • Pro Quality encoding - takes about x2 to process a movie
    Yours Bengt W

  • Quicktime Pro crashes when trying to save file

    I just quicktime pro, and so far it keeps crashing on me when I try to save a video file. Here are the steps:
    1. Open a video file (m4v)
    2. Overlay text on the first few seconds of the video
    3. Save video
    4. CRASH!
    I'm not sure if this helps, but I got the following debug dump. Not sure if it's helpful.
    Please help! I have the latest version of QT Pro.
    Dump:
    The thread 'Win32 Thread' (0x1204) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xf18) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x17f8) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1680) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1784) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x103c) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xe44) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0x1004) has exited with code 0 (0x0).
    The thread 'Win32 Thread' (0xcb8) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xab8) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x9b0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x14a4) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x478) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1104) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1368) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x17a4) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x11a4) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xdcc) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x9c0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x168c) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x13ec) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xb3c) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xce0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x17ac) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x11f0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1584) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1290) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xbf0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xac0) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1478) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1668) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xf30) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x11ac) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0xac4) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x10a8) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1704) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x1484) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x904) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x4b4) has exited with code -1073740791 (0xc0000409).
    The thread 'Win32 Thread' (0x136c) has exited with code -1073740791 (0xc0000409).
    The program '[3852] QuickTimePlayer.exe: Native' has exited with code -1073740791 (0xc0000409).

    Drat ... so much for subtlety ...
    Right, let's scrape all the QuickTime files out and reinstall from scratch.
    First, let's download and save a "standalone" QuickTime installer to your hard drive (don't run the install on line, and don't start the install just yet). Get the version that doesn't mention iTunes:
    http://www.apple.com/quicktime/download/
    Next, we'll make sure we've got your *Pro Key* secured. (Uninstalling QuickTime will remove the Pro Key, and we'll have to reenter it in the Register Tab after reinstalling QuickTime.)
    Head into your QuickTime, preferences and take a note of precisely how the Key *and the name in the "Registered to" field* appear. (I've been known to take and print out a screenshot of the Register tab, in order to be quite sure of the precise details of both those things.) Don't tell us what your Key is.
    Now, head into your "Uninstall a program" and uninstall QuickTime.
    After the uninstall completes, we'll clean up any leftover QuickTime program files on the PC. How we do that will depend on whether you've got a 32-bit or 64-bit version of 7.
    *With a 32-bit 7*
    (1) Open Local Disk (C:) in Computer or whichever disk programs are installed on.
    (2) Open the Program Files folder.
    (3) Right-click the QuickTime folder (if it still exists there) and select Delete and choose Yes when asked to confirm the deletion.
    (4) Delete the QuickTime and QuicktimeVR files located in the C:\Windows\system32 folder (if they still exist there). Click Continue if Windows needs confirmation or permission to continue.
    (5) Right-click on the Recycle Bin and on the shortcut menu, click Empty Recycle Bin.
    (6) Restart your computer.
    *With a 64-bit 7*
    1) Open Local Disk (C:) in Computer or whichever disk programs are installed on.
    (2) Open the Program Files (x86) folder.
    (3) Right-click the QuickTime folder (if it still exists there) and select Delete and choose Yes when asked to confirm the deletion.
    (4) Delete the QuickTime and QuicktimeVR files located in the C:\Windows\sysWOW64 folder (if they still exist there). Click Continue if Windows needs confirmation or permission to continue.
    (5) Right-click on the Recycle Bin and on the shortcut menu, click Empty Recycle Bin.
    (6) Restart your computer.
    After the PC restarts, don't open any applications. Disconnect from the internet and/or your network, and switch off all your security software (firewall, antivirus, antispyware).
    Reinstall QuickTime by doubleclicking the QuickTimeInstaller.exe you downloaded earlier.
    Reenable all security software prior to prior to reconnecting to your network and/or the internet.
    Now launch QuickTime. Go into your QuickTime preferences, and reenter your name and Key *precisely as they were prior to the uninstall.* Click apply. You should see "QuickTime 7 Pro" appear in the Tab.
    ... now let's try giving the export another shot. Any better luck this time?

Maybe you are looking for

  • Acrobat 9 HTML to PDF conversion sets all checkboxes to checked?

    When I convert an HTML file that contains checkboxes to PDF using Acrobat 9 Standard or Pro (fully updated) on Windows XP SP3, all of the checkboxes end up checked in the resulting PDF.  I've looked in settings menus but can't find anything that seem

  • My iMac's computer name keeps changing automatically after Yosemite upgrade

    This started happening once I upgraded my iMac to Yosemite. It will add numbers to the name of my iMac. Example: It starts off as say "My iMac" Then a half day later, it changes to "My iMac (2)" Then the next day it will be "My iMac (3)" And if I ope

  • HT1386 Deleting imported photos from iPad .

    I have transferred pics from a pc to my iPad, I now want to delete those pics and request some help to do this. I have no problem with iPad photos but can not delete the imported pics.

  • Order booking on one customer and invoicing a different customer

    Hi all, I have a requirement wherein I book a sales order on one customer C1. And I need to ship the goods to some C2, who is a customer for C1. I should invoice C2 and not C1. I get the payment from C2. how can I achieve this? plz help. Thanks in ad

  • Adding "author" name in iWeb

    I mistakenly omitted the Author name when I submitted my feed.  I am using garageband-to iWeb and then publishing to iTunes.  How do I get the iTunes store listing to show my author name instead of "Unknown".  I know how to make the changes in garage