Quicktime Player 50 secs delay on first film

Hi all,
I have the following problem (tested with Windows XP/Vista/7 - all show the same behaviour, all have the free edition of Quick Time Player, latest download) on several computers. Background: I use a self written program (Delphi) to start QuicktimePlayer.exe (using a shellexecute call). I pass the filename of a film as the (only) command line parameter. Quicktime starts (according to the OS task list), but does not yet display any window, sits there for 50 seconds without doing anything, I noted neither network activity (used Wireshark to sniff for suspicious packets and found none), no CPU or memory utilizytion, no HD traffic, nohting. Is simply sitting there and does nothing. Then, after approx. 50 seconds, QuickTimePlayer suddenly awakens and plays the film as desired.
Any film I play subsequently starts immedately. If I close and re-open my application, however, I get this delay when I start the first film.
Anyone who has an idea what might be causing this odd behaviour?
Thsnks,
Armin.
Message was edited by: Nimral

It looks like I may have found the solution.
I started by checking my task list with Process Explorer from www.sysinternals.com. QuickTimePlayer.exe was parked there, so I killed it.
Then when I clicked on a trailer link, a new instance of QT appeared in the process list, and QT's window appeared as expected. The trailer played, and when it was finished I closed QT.
However, QuickTimePlayer.exe remained in the task list, and no more trailers would play. I killed the task again, and then clicked on a trailer to bring QT up again. This time I went to Edit / Preferences / QuickTime Preferences. On the Streaming tab I turned OFF Instant On.
Now when I exit QT, the player task closes, and a fresh one appears when I play another movie. This is exactly what I want it to do.

Similar Messages

  • Quicktime player 10.1 doesn't read film .mov

    quicktime player 10.1 doesn't read film .mov . for information I used 10.0 version before and it worked well. OS 10.7.5 doesn't accept previous quicktime player version. What can I do

    http://support.apple.com/kb/DL923
    Use the other version of QuickTime Player. You can use both versions in Lion.

  • Why does my bank statement open up in Quicktime Player with only the first page visible?

    This month I tried to open my bank statement as usual, and it opened in Quicktime Player.  The first page of the statement displays, but I can not scroll to the next pages.  I have tested downloading other items, and they downloaded as usual.  I don't use Quicktime, and I tried hiding it.  But each time I try to see my statement, it comes up again. 

    Hi Lynda,
    What file format is your bank statement in? Is it a PDF or in an .xls/.csv file format? It sounds like the program-to-file association has gotten messed up on the file. If you right-click (or ctrl-click) on the file then:
    - Get Info
    - Open with
    If it's a .pdf then you'll want to associate the file with Preview (or whatever PDF viewer you use). If it's a different file format you'll want to associate it with the program that you typically use for that file type.

  • Quicktime X beach balling delay when opening any file

    Hi all - lately my Quicktime X gives me a delay of 10-15 seconds and a beachball before playing any file.  Quicktime 7 plays without a hitch instantly.
    This is true of files on all locations on my Mac.
    The file opens instantly, I see the first frame, but before it plays it will berachball. 
    It is true for video and audio files.
    Any thoughts?

    That's an expected behavior for QuickTime Player 10 or 10.1. The entire file must load before playback can begin.
    QuickTime Player 7 doesn't have this limitation.

  • Making applescript to batch shorten MP4's using quicktime player- 95% done

    Hey guys, soo this is my first post and I'm hoping someone here could help me..
    I downloaded a short script from someone, here it is:
    +with timeout of 86400 seconds+
    + +
    + display dialog "Before beginning batch processing, make sure QuickTime Player is set to the desired export settings, and all videos to be processed are in a folder named ‘Input’ on the desktop." with icon note+
    + +
    + tell application "Finder"+
    + set the startup_disk to the name of the startup disk+
    + end tell+
    + +
    + set user to do shell script "whoami"+
    + set inputfoldername to "Input"+
    + set input_folder to startup_disk & ":Users:" & user & ":Desktop:" & inputfoldername & ":"+
    + set user_desktop to startup_disk & ":Users:" & user & ":Desktop:"+
    + set output_folder to startup_disk & ":Users:" & user & ":Desktop:Output:"+
    + set file_extension to "_export.mp4"+
    + +
    + try+
    + tell application "Finder"+
    + make new folder at user_desktop with properties {name:"Output"}+
    + end tell+
    + end try+
    + +
    + try+
    + set thefolderlist to list folder input_folder without invisibles+
    + repeat with x from 1 to count of thefolderlist+
    + set the_file to input_folder & item x of thefolderlist+
    + set output_file to output_folder & item x of thefolderlist & file_extension+
    + tell application "QuickTime Player"+
    + activate+
    + open the_file+
    + export front document to output_file as MPEG4 using most recent settings with replacing+
    + close front document+
    + end tell+
    + end repeat+
    + on error+
    + display dialog "This script requires a folder named ‘" & inputfoldername & "‘ located on the desktop." with icon stop+
    + end try+
    + +
    + beep+
    + +
    +end timeout+
    That script is meant to export files as MPEG4. That is not what I want to do, I just want to shorten the video to -1 second, or 99% or something like that, then save it into the output folder. I would imagine doing this just takes 1 line in the right place but I am lost, I searched google but I can't find anything
    can anyone help me please.. Here are the lines I think I need changed
    + tell application "QuickTime Player"+
    + activate+
    + open the_file+
    + export front document to output_file as MPEG4 using most recent settings with replacing+
    + close front document+
    + end tell+
    how can I change that to trim the video???

    That isn't working for me. When I hit 'compile', I get 'Expected end of line, etc. but found "from".'
    Here is the code I have so far, I have changed it a bit. However my problem now is that it *never trims*
    tell application "QuickTime Player"
    activate
    try
    close front window
    end try
    open the_file
    delay 3
    set time_scale to get the time scale of the front document
    set movie_length to get the duration of the front document
    set time_original to movie_length / time_scale
    set timetotrim to amounttotrim
    set new_time to (time_original - timetotrim) * time_scale
    select at 0 to new_time
    trim
    delay 1
    export front document to output_file as MPEG4 using most recent settings with replacing
    close front document
    end tell

  • Applescript for quicktime player 7 in 10.6

    I've been using an applescript that can take a bunch of movie clips and merge them into a single file. (see script below) now with 10.6 and quicktime x. this script no longer works. Can anyone help me to get quicktime player 7 to launch and start doing it's trick. any help most appreciated.
    on open these_items
              tell application "Finder" to set sorted_items ¬
                        to sort these_items by name
              repeat with i from 1 to the count of sorted_items
                        set this_item to (item i of sorted_items)
                        tell application "QuickTime Player 7"
                                  if i is equal to 1 then
      make new document
                                  end if
      open this_item
                                  tell document 1
      rewind
      select all
                                            copy
      select none
                                  end tell
      close document 1 saving no
                                  tell document 1
                                            add
      select none
                                  end tell
                        end tell
              end repeat
    end open

    The scripts below work for me, using Mac OS 10.4.11 and QuickTime Pro v. 7.6.4.
    Note that my version of AppleScript (v. 2.1.1) doesn't recognize application QuickTime Player 7. Hence, application "QuickTime Player" was used throughout. Your needs may vary; if you can or must use the "7" by all means do so.
    The first is based on the script Craig Williams posted in this thread: http://macscripter.net/viewtopic.php?id=31674 (in post #6). I modified the script a bit so that a new file is created on the front end, and the merged file gets written to it once the script finishes:
    set file_name to text returned of (display dialog "A new merged QuickTime file will be created on the desktop. Please choose a name:" default answer "Enter Name")
    tell application "Finder"
      try
      set make_file to make new file at (path to desktop folder as string) with properties {name:file_name & ".mov"}
      set new_file to make_file as alias
      on error
                        display dialog "A file with the name " & "“" & file_name & "”" & " already exists on the desktop. Please try again." buttons {"OK"} default button 1 cancel button 1 with icon stop
      end try
    end tell
    set theCount to 1
    set theFolder to choose folder with prompt "Choose the folder with QuickTime files you want to join together."
    tell application "Finder"
      set theFiles to every file of folder theFolder
      set totalFiles to (count the theFiles)
      repeat with i from 1 to totalFiles --to 1 by -1
      set thisfile to item i of theFiles as alias
                        --QT Pro
      my mergeFilesUsingQT(thisfile, theCount, totalFiles)
      set theCount to theCount + 1
      end repeat
    end tell
    delay 1
    tell application "QuickTime Player"
      tell document 1
      rewind
                        delay 0.5
      save as self contained in new_file
      close
      end tell
    end tell
    on mergeFilesUsingQT(thisfile, theCount, totalFiles)
              tell application "QuickTime Player"
      activate
                        --the first file only gets copied
                        if theCount = 1 then
      open thisfile
                                  delay 0.5
      tell document 1
      select all
                                            copy
      end tell
      close document 1 saving no
      else
                                  --these files get the previous file added to it and
                                  --then it is copied to be added to the next file
      open thisfile
                                  delay 1
      tell document 1
      set x to get duration
      set current time to x
      paste
      select all
                                            copy
      end tell
      end if
      end tell
    end mergeFilesUsingQT
    My own version, below, creates a new file and then opens a temporary QuickTime document to which each file is copied in turn. Once copying is complete, the temporary file is written to the file that was created at the beginning of the script:
    set file_name to text returned of (display dialog "A new merged QuickTime file will be created on the desktop. Please choose a name:" default answer "Enter Name")
    tell application "Finder"
      try
      set make_file to make new file at (path to desktop folder as string) with properties {name:file_name & ".mov"}
      set new_file to make_file as alias
      on error
                        display dialog "A file with the name " & "“" & file_name & "”" & " already exists on the desktop. Please try again." buttons {"OK"} default button 1 cancel button 1 with icon stop
      end try
    end tell
    tell application "QuickTime Player"
      set temp_doc to make new document
    end tell
    set fol to choose folder with prompt "Choose the folder containing QuickTime files to be merged:"
    tell application "Finder"
      set the_files to every file of folder fol
      repeat with i from 1 to count of the_files
      set a_file to item i of the_files
      my merge_files(a_file, temp_doc)
      end repeat
    end tell
    delay 1
    tell application "QuickTime Player"
      tell document 1
      select none
      save as self contained in new_file
      close
      end tell
    end tell
    on merge_files(a_file, temp_doc)
              tell application "QuickTime Player"
      activate
      make new document
      open a_file
      delay 1
      tell document 1
      set t to get duration
      set current time to t
      select all
      copy
      close
      end tell
      activate document temp_doc
      delay 1
      tell document 1
      paste
      end tell
      end tell
    end merge_files
    Hope this helps. Good luck.

  • QUICKTIME PLAYER DOES NOT WORK IN MOUNTAIN LION 10.8.4?? IT LAGS WHENEVER I SPEAK IN MY MICROPHONE?

    I recently updated my macbook pro to the new 10.8.4 update of apple, which i thought was pretty cool
    But whenever i use Quicktime Player (The version of my Quicktime is 10.2) for recording with my Blue Yeti microphone, it starts to lag when i talk on screen and it started to annoy me A LOT! :/
    Is it because of my Quicktime player version?
    Please help, this has never happened before i updated my laptop!

    Then I don't really know why it isn't working. What you might try is this:
    Repair the Hard Drive and Permissions - Lion/Mountain Lion
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.
    After this is completed download and install 10.8.4 Mountain Lion Update v10.8.4 (Combo).

  • Video upload from Iphone 5 to pc plays slow after few times in Quicktime player

    I uploaded a video from my Iphone 5 to my pc and in the beginning it played well
    But now if i try to play it plays really slow and chobby.. not good.
    Can't find any solution.

    However, when I go to play them back in the latest Quicktime player the colours are wrong, mainly coming out purple.
    On an XP system, the first thing I'd try would be the "Disable Direct3D acceleration in QuickTime" section of the following document. (iTunes uses QuickTime for video display, so the same basic troubleshooting step applies.) Restart the QuickTime Player prior to checking to see if the settings change has had any effect:
    Troubleshooting iTunes for Windows XP and 2000 video playback performance issues

  • QuickTime Player has encountered a problem and needs to close. [error]

    *Error message:*
    QuickTime Player has encountered a problem and needs to close. We are sorry for the inconvenience.
    *Error signature:*
    EventType : BEX P1 : QuickTimePlayer.exe P2 : 7.60.92.0
    P3 : 496279cc P4 : QuickTimePlayer.exe P5 : 7.60.92.0 P6 : 496279cc
    P7 : 0000130d P8 : c0000409 P9 : 00000000
    *Error report content:*
    C:\DOCUME~1\MyUserID\LOCALS~1\Temp\WER1cc6.dir00\QuickTimePlayer.exe.mdmp
    C:\DOCUME~1\MyUserID\LOCALS~1\Temp\WER1cc6.dir00\appcompat.txt
    This problem is same as reported here and hasn't been solved:
    http://discussions.apple.com/thread.jspa?threadID=1370493&tstart=1397
    I have seen this problem appearing on Windows 2000, XP SP2 and XP SP3 with all QuickTime 7 versions (can't tell about iTunes since I don't use it), it didn't bother me because I have no use for QT/MOV myself.
    but.
    I have just installed your latest QT Player 7.60.92 and it craps out with the same error whenever I want to open .mov files.
    And I have downloaded few trailers ranging from small resolution up to highest "HD" resolution from your own Apple website to make sure it is not some encoding compatibility issue.
    I know it is a bug in QT Player itself, so don't tell me please that "my QT got fragmented" or such BS (like the replies suggested in the other thread) or ask about any QT alternative corrupting "official" QT Player since I have no such thing. I am trying to make it work on my mother's computer with freshly installed WinXP (prior updated up to latest patches), machine has standard 32bit intel single core CPU (2.8GHz, 2GB of RDRAM).
    I am really sorry I bought her camera that take those stupid .mov QT videos.
    Apple folks, what's the catch?
    With every crash it creates in user temp directory files like:
    QuickTimePlayer (2009-03-15 16.06.49).dmp
    + folder like WERf743.dir00 with files inside:
    appcompat.txt
    manifest.txt
    QuickTimePlayer.exe.hdmp
    QuickTimePlayer.exe.mdmp
    appcompat:
    Well, too big to post here (~190kB of text) and anyways it just lists files/versions from what I've seen, so its probably irrevelant
    manifest:
    Server=watson.microsoft.com
    UI LCID=1033
    Flags=1674066
    Brand=WINDOWS
    TitleName=QuickTime Player
    DigPidRegPath=HKLM\Software\Microsoft\Windows NT\CurrentVersion\DigitalProductId
    ErrorText=If you were in the middle of something, the information you were working on might be lost.
    Stage1URL=
    Stage1URL=/StageOne/Generic/BEX/QuickTimePlayerexe/7_60_92_0/496279cc/QuickTimePlayer_exe/7_60_920/496279cc/0000130d/c0000409/00000000.htm
    Stage2URL=
    Stage2URL=/dw/GenericTwo.ASP?EventType=BEX&P1=QuickTimePlayer.exe&P2=7.60.92.0&P 3=496279cc&P4=QuickTimePlayer.exe&P5=7.60.92.0&P6=496279cc&P7=0000130d&P8=c00004 09&P9=00000000
    DataFiles=C:\DOCUME~1\My-User-ID-here\LOCALS~1\Temp\WERf743.dir00\QuickTimePlaye r.exe.mdmp|C:\DOCUME~1\My-User-ID-here\LOCALS~1\Temp\WERf743.dir00\appcompat.txt
    Heap=C:\DOCUME~1\My-User-ID-here\LOCALS~1\Temp\WERf743.dir00\QuickTimePlayer.exe .hdmp
    ErrorSubPath=Generic\BEX\QuickTimePlayer.exe\7.60.92.0\496279cc\QuickTimePlayer. exe\7.60.92.0\496279cc\0000130d\c0000409\00000000
    DirectoryDelete=C:\DOCUME~1\My-User-ID-here\LOCALS~1\Temp\WERf743.dir00
    /edit
    Yes, same as in the other thread from year ago, the QT/.mov files play fine in the browsers (I have just check on IE7, Firefox, K-Meleon).
    Message was edited by: -888-

    Look, I had it running _few times_ too until it crapped out and gives the error since (on my own other computers - which I don't care since I have no use for any QT/.mov myself, but I repeat from post 1: I need it working on my Mother's comp).
    And talking about 'bad drivers' - yes, I know that the drivers are sometimes at fault and bad drivers can make entire windoze pc unstable or crash; but how can you suggest this as a cause in this case when I'm telling you that the same error appears on completely different machines? And wouldn't this error appear from begining, from very first use of QT Player if it were bad drivers? Sure it would if it was faulty driver, but since it didn't that's not the case obviously.
    Another pointer that it is NOT drivers related problem is that all other audio-video programs work fine, without errors and problem-free on the same machines, including playback of some of the .mov files with Media Player Classic or VLC - while they crap out with QT Player. If it was any of the drivers for audio or video, directx acceleration, etc - the faulty driver(s) should and would affect other programs as well. Yet all of them work fine and as I said - some even play QT files too (the ones capable of).
    /edit:
    Just to test it I "caved in" and I have installed entire iTunes 8.0 garbage (as suggested by foobula earlier) since I couldn't get just QTPlayer part of it to install separately, and what do you know:
    LO & BEHOLD! same .mov files play fine with QT7, no errors, no problem! (I have opened/closed same .mov files many times).
    Then I uninstalled iTunes and all of its junk,
    removed any traces of it (because it left out - in a Microsft style - plenty of garbage in registry, user appdata folder etc),
    rebooted,
    installed the "standalone" QT Player 7.60
    and hello Apple my darling! - same error is back after just 2 playbacks of very same .mov files!
    (I used Apple's own .mov trailers for testing just to make sure I have "right" quicktime files:
    http://movies.apple.com/movies/weinstein/inglouriousbasterds/inglouriousbasterds -tlr2_1080p.mov
    and
    http://movies.apple.com/movies/weinstein/inglouriousbasterds/inglouriousbasterds -tlr2_480p.mov
    - and I repeat: both played once each fine (haven't play till the end though, but I'm sure that doesn't matter since the problem appears from the start)
    What better proof you need that the problem is only with QT Player in a "standalone edition" (or whatever Apple calls it) and not with any drivers etc?
    As previously, both play fine when links opened in a browsers (so the QuickTime whatever-components responsible for audio and video rendering WORK FINE and its not any "bad drivers" problems, it is just QT Player application's problem)
    Again: (I hate to repeat myself)
    *I don't want any itunes or other junk,*
    *I just want .mov files to open with quicktime player - no more or less.*
    Message was edited by: -888-

  • HT201290 why is QuickTime Player not working when i try to open this files i got in a external hard drive some one els lend me ???

    i have a macbook that was resantly upgrade we running Yosemite 10.9 OS and the external hard drive is fairly current brand name WD capacity 500GB with 147GB free lots of its contents are QuickTime Player videos that will like to open some other media is available in different format and is working properly, i have download a more current version of QuickTime Player and it sound better at list sound like it is going to star playing but it don't... so please if some one can help me with some answers will be real appreciate , thank you kindly looking forward to hear from you is my first time asking questions about apple it feels a bit like a shoot in the dark !

    Is the friend's external drive where you said these files are, correctly formatted
    for use with Mac OS X, or is it set up for use solely with a Windows format?
    If you copy one of the QuickTime files into a folder, in your computer and try
    to run it from there, does it work at that point? It may not. Could be the drive
    you borrowed from a friend has some other issue; perhaps creator account
    and permissions may also be limited by how the content was added there.
    There is way too much missing information for me to guess, but I wonder about
    how the hardware was set up and if the files are actually available to your Mac.
    The QuickTime support page itself should be a portal to more information...
    QuickTime
    The above link is part of this larger section:
    http://www.apple.com/support/mac-apps/
    Perhaps someone will see this ASC discussion thread later in the day (2AM here)
    and maybe can offer a more direct reply. There are several articles in Apple Support
    database for applications and other items (such as QuickTime) & the support site is
    searchable. Sometimes the database is hard to find exact articles or topics, though.
    Hopefully the issue is not too difficult to determine the cause...
    Good luck & happy computing!

  • Delays on first daily use after opening an application

    For the past month or so there's a longish delay the first time I use an application. For example, I have no problem opening Mail and getting messages, but the first time I want to send a message there's exactly a 28 seconds delay before it lets me type anything, and no delay for any further messages (until I close Mail and reopen it, where the delay reappears). There's a 23 seconds delay the first time I send something to be printed, 20 seconds the first time I save a file in Illustrator or Photoshop (both CS4), etc., but again, no delay afterward. It feels like the action is being checked once and then okayed; the length of the delay is always the same for a particular action.
    Any idea what could be doing this? I've added a few things lately on my G5: Growl, 1Password, Fiwi, Sneak Peek Pro, Delicious Library, Default Folder X, and Drop Box. I've removed them all and put them back one by one with no change.
    It almost feel like a virus of some kind...

    Carolyn,
    Thanks for your reply. I have over 20 years experience using a Mac for publishing, and the last time a slowdown similar to this one happened was due to a virus (yeah, rare; I think it had something to do with Quicktime and some automatic action). Hence, my wondering about some benign virus slowing down specific actions.
    The HD I work from (different from the HD with the OS) has a capacity of 75G, with only 13G being used. All my HDs (or partitions, 6 of them in total) have between 35G and 90G of free space.
    As mentioned before, the slowdowns are very specific, and happen one time only until I close the application and open it again. I can't pinpoint exactly when it started: right after a system update, after installing a shareware...
    Has anybody else experienced something similar? I'd like to try different solutions before reinstalling the OS in the hope that it cures the problem.

  • I have QuickTime Player 7.6.8, I cannot update or remove it b/c I am missing QuickTime.msi file. It is gone and I need it back. Please help.

    I have QuickTime Player 7.6.8, I cannot update or remove it b/c I am missing QuickTime.msi file. It is gone and I need it back. Please help.

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any QuickTime entries and click "Remove".
    Quit out of CleanUp, restart the PC and try installing iTunes again. Does the install go through properly now?
    (If you do find a clean download site for the correct version of CleanUp, please don't tell me where it is. Without wishing to sound paranoid (although I grant it does sound paranoid), there is a non-zero chance that posting links to download locations for the utility here at Discussions leads to that download location being shut down.)

  • Quicktime X will only open the first file when launched.

    Hi,
    Here is my problem. After upgrading my MacBook 4,1 to Snow Leopard, video files should open in Quicktime X.
    What's happening is that, if Quicktime X in not launched yet, the first video file I double click on in my "Movies" folder will open in Quicktime X. But then, any subsequently doubled clicked file will not open at all, and console is returning this error message:
    QuickTime Player[5246] -[MGApplication _doOpenFiles:]: unrecognized selector sent to instance 0x100b0a890
    Could anybody help?
    Thanks in advance,
    Luc

    Once again, it has nothing to do with files that should only open in QT7. QT7 is already installed on my SL 10.6.1 and, yes, it opens the files that need to be opened with it.
    I'm talking about a wrong behavior of QT X here. It opens whatever video file appropriate for it the first time it launches, but THEN, subsequent double clicked video files THAT SHOULD OPEN WITH QT X are not opening at all, and the console is throwing this error message:
    QuickTime Player[5246] -[MGApplication _doOpenFiles:]: unrecognized selector sent to instance 0x100b0a890
    Then, if I quit QT X, and double click on the file that previously didn't open, QT X launches and display the file as should be.

  • QuickTime Player 10.1 no more includes the ability to save a movie file in the same format as the original movie after editing it? No, it doesn't!

    Since upgraded to Lion, I have to wait for QuickTime Player 10.1 to "CONVERT" every file that I edited in it.
    Yes, it might save some disk space for me.(Which is not always the case though.) But it also takes almost 10 times or more as it did when back on Snow Leopard with QuickTime Player 10.0 there I could save any file in the same format as the original movie WITH NO NEED TO CONVERT IT.
    Now I have to wait like 10 minutes to delete just a few frames.(The time it takes depends upon the original size of that movie. The larger the longer.) And guess what? If you have two clips originally split up from a movie and sperately getting saved(converted actually) with a loooooooot of time, and you naively added one of them to the other's end and then saved the finished one. It converts AGAIN! Doing so back on Snow Leopard with QuickTime Player 10.0 only takes you even a few seconds only!
    Seriously, are we eating Apple or dirt this time?

    My existing movies are all the following types straight from FinalCut
    Apple Intermediate Codec, 1920 × 1080, Millions
    16-bit Integer (Little Endian), Stereo, 48.000 kHz
    This particular movie is 6.66 Gb
    The new Quicktime player in OS Mavericks converts these to the following format:
    Apple ProRes 422, 1920 x 1080
    Linear PCM, 16 bit little-endian signed integer, 2 channels, 48000 Hz
    And a movie size of 6.48 Gb
    It seems obvious from other forum posts this is a planned move so that everything is the "new mobile device" ready state/format. To use Marc Speth's post as material....
    https://discussions.apple.com/message/23749558#23749558
    this is probably about dumbing down desk top OS to that pf iPhones and iPads. This is not what I paid good money to own a Mac Book Pro for....
    Today I rolled all the back to Snow Leopard. Really good move...... All those new features hey? I lost the ability to work in spaces and of course the whole Quicktime debacle.
    The rolling back process was easy, restored from a point prior to installing Lion and Mavericks and the only issue was my iPhoto libraries. Thank my stars that I still had back ups that I had not converted yet.... viva la Mavericks...NOT. Apple can keep it.
    Unsure if you are just venting or if there is supposed to be a question here. Basically, I assumed this to be Apple's idea of an improvement. That is, I really believe the ProRes 422 codec is a better intermediate codec than the AIC codec but most of my old HDV camcorder family tapes were imported by iMovie (for compatibility with my wife's non-FCP computer configuration) and, like your content, is/remains stored as AIC/PCM MOV files. At first I thought this might be a generalized change affecting all QT X based apps but when I went to check the latest iMovie v10.0 update, became confused when I noted that AIC source files were not automatically updated to ProRes 422 and continue to play natively in the iMovie source media viewer.
    I guess this is supposed to be a logical evoluption and we were supposed to have seen the "handwriting on the wall" dating back to when Apple's first released the free ProRess "player" ProRes 422 codec. Still, it would have been nice if Apple had given some warning during the last few years so users could plan and prepare for such a drastic change. For the moment, I am just thankful that AIC remains, at least temporarily, supported nativelyby the iMovie video editor under Mavericks. Thank goodness for small favors.

  • QuickTime Player

    Hi. I've upgraded to Snow Leopard and I thought one of the built in features was a new version of QuickTime that meant we no longer had to buy the "Pro" version. I have QuickTime Player as part of Snow Leopard and I'm trying to transfer movies to my iPod touch. The option to save in different file formats is grayed out. I was surprised by this and can't figure out now how to save files.
    I've asked Apple tech support and have gotten conflicting answers. One said to use QuickTime X (which is not part of Snow Leopard that I can tell), another said purchase QuickTime Pro. However, the QuickTime Pro page says that I need to have QuickTime (I guess the none Player version) before installing QuickTime Pro.
    Any help would be appreciated.
    Thanks,
    Scott

    I thought one of the built in features was a new version of QuickTime that meant we no longer had to buy the "Pro" version.
    Some features that were considered "Pro" are part of QuickTime X Player, but not all.
    I have QuickTime Player as part of Snow Leopard and I'm trying to transfer movies to my iPod touch. The option to save in different file formats is grayed out. I was surprised by this and can't figure out now how to save files.
    What format is the movie you're attempting to convert?
    One said to use QuickTime X (which is not part of Snow Leopard that I can tell)
    QuickTime X is most definitely part of Snow Leopard.
    another said purchase QuickTime Pro. However, the QuickTime Pro page says that I need to have QuickTime (I guess the none Player version) before installing QuickTime Pro.
    You can register a Pro key in QuickTime 7 Player which is probably in your Utilities folder. The Pro features of QuickTime 7 Player give you more options than the features included in QuickTime X Player. If QT 7 Player is not in the Utilities folder, you can install it via the Optional Installs on the Snow Leopard installation disk. Run QuickTime 7 Player first before you purchase a key; I've seen anecdotal information that says that the Pro features are already enabled, though I haven't been able to confirm that .

Maybe you are looking for

  • Update data in user table

    Hello, I have one question. when i have in table for example 2000 records. I viewthis data in matrix on my form. Now i change the record 1000. Now when i want save data to the table? Is necessary find the old record in the table and pass through all

  • Something is wrong with my Creative Nomad

    Yes i purchased a Creative Nomad Zen 20gb and for some reason the headphone jack is acting very strange and i have to reposition my headphones to get it to work. I know its not my headphones because they work fine in my other cd player. Also sometime

  • Show username and date on results slide

    Hi, Is it possible in captivate that a user can enter the user name and date in the beginning of the project which later can be displayed on results slide

  • Saving work books locally

    Hello all, When we save the work book locally as excel, and again we can open this excel As when we open this excel it will give only the data which is stored but not the updated data because this excel does not have connection with BW system so how

  • The DATEPICKER field keeps disappearing

    I am trying to use the "DatePicker" Display Class in my User Form *<Display class = 'DatePicker'>* However, when I select the date there, then SAVE the form, and then try to View it again, the Date vanishes! The Date-Field is empty! I've been racking