AppleScript  and QuickTime frame sequences

Hi all. I've got some movies with foreign subtitles I want to convert to English. However, when I open them with QT Pro and choose the 'Movie Properties' window I see the subtitles are stored as images in a separate VobSub video track (not text).
Biggest challenge here is getting an accurate "cue-in" and "cue-out" time reference for each individual subtitle, so I tried a few off-the-shelf solutions like AVIDemux from SourceForge hoping they might at least give me this info (and leave the OCR translations for me to worry about), but I had nothing but install errors or crashes 100% of the time with this 3rd party software.
AppleScript seemed the logical thing to try and I've got almost no knowledge of it, but here's what I've managed to cobble together after several days of trial and error:
     tell application "QuickTime Player"
       tell document 1
            set SubtitleCount to round (count frames of track 3) -- counts total titles
                              -- seems we need another 'tell' to access each individual frame's info
            tell track 3
                 set FrameStart to time of frame 3
                 set FrameLength to duration of frame 3 -- gives interval before NEXT frame, not time onscreen
            end tell
       end tell
     end tell
     display dialog "Subtitles: " & SubtitleCount & return & "Start: " & FrameStart / 1000 & return & "Length: " & FrameLength / 1000
Obviously the example code is hard-wired to give info for frame 3 only (and eventually needs a looping function), but the SubtitleCount and FrameStart code work perfectly. Unfortunately however, FrameLength simply gives me the time interval between the start of frame 3 and start of frame 4, rather than the required duration on-screen.
For example, suppose from the above code that frame 3 shows a length of 12.92 seconds before the start of the next frame -- but only shows on-screen for 4.7 seconds before being "cued" out again. Obviously something is telling QT Player Pro 7 when to stop displaying this frame. But what? And how can I access this parameter (if it's even possible)?
I'd sure appreciate any suggestions/solutions from the more experienced in this forum. Thanks a lot in advance :-)

Camelot,
How can I poll the duration to see if it is increasing? While it may be a poor solution, given the limited options in QuickTime, this may be the only option.
I seem to have everything else working now and have modified my code as below.
tell application "QuickTime Player"
  activate
  close every window
  new movie recording
  present document 1
  delay 2
  start document 1
          repeat 299 times
                    if document 1 is not playing then
  save
  quit
                              exit repeat
                    else
                              delay 1
                    end if
          end repeat
          try
  stop document 1
  save
  quit
          end try
end tell
Any more help would be greatly appreciated.
Thanks.

Similar Messages

  • Applescript and quicktime

    Hi,
    I am new to AppleScript.
    I am trying to create a script that runs an automated "speakers corner".
    I am using an iMac with built-in EyeSight camera, OSX 10.6.8 and QuickTime X.
    The problem that I am having is in finishing the script.
    I want the user to be able to end the video recording by pushing a button, but if the user does not end the recording, I want it to automatically stop/save/quit after 5 minutes.
    I have been able to get it to automatically stop/save/quit after the 5 minutes, but have not been able to get it to save & quit if the user stops the recording.
    Any help would be greatly appreciated.
    Thanks.
    tell application "QuickTime Player"
      activate
      close every window
              set recording to false -- Don't think this is doing what I want it to...
      new movie recording
              tell application "System Events" to keystroke "f" using command down
      delay 2
              start document "movie recording"
              if recording = false then -- This is the part that does not work
           save
           quit -- End part that doesn't work
              else
                             try
                                            delay 300
                                            stop document "movie recording"
                save
                quit
                             end try
              end if
    end tell

    Camelot,
    How can I poll the duration to see if it is increasing? While it may be a poor solution, given the limited options in QuickTime, this may be the only option.
    I seem to have everything else working now and have modified my code as below.
    tell application "QuickTime Player"
      activate
      close every window
      new movie recording
      present document 1
      delay 2
      start document 1
              repeat 299 times
                        if document 1 is not playing then
      save
      quit
                                  exit repeat
                        else
                                  delay 1
                        end if
              end repeat
              try
      stop document 1
      save
      quit
              end try
    end tell
    Any more help would be greatly appreciated.
    Thanks.

  • AE CC 2014 Corrupted and Glitched frames when rendering to Quicktime

    Ever since upgrading to the newest version of After Effects, I've been getting corrupted and glitched frames when rendering videos with a Quicktime holder.  My normal workflow is rendering the video straight out of AE, but it also happens when rendering with Adobe Media Encoder, or even while using the "BG Renderer" script for AE that renders from the terminal.  It happens whether I have multiprocessing enabled or not.
    The corruption differs depending on what codec I'm using, but in the Cineform Codec it shows up as green frames:
    On DNxHD they show up as Red frames (don't have a screencap of this one but you get the idea).
    Using the QT Animation Codec they show up as static or distortion:
    I have not found a codec that does not become corrupted when encased in the QT holder.  Image sequences render out fine, and Cineform with an AVI holder renders out fine.
    Even more strangely, I can fix the problem if I link the AE composition to Premiere, then render the QT file out through Premiere itself.  The fact that Premiere calls and renders the Comp fine but AE does not, makes me think this is a bug in AE's treatment of Quicktime rather then a driver/system incompatibility on my end.  But I'm certainly willing to try any suggestions the community might have for me =]
    Specs:
    Windows 7 64-bit
    AMD Firepro V7800
    AMD Phenom II X6 1090T
    16 GB RAM
    Rendering to a local drive
    Fully Updated AE
    Latest version of Quicktime

    solutions for problems with QuickTime files in After Effects CC (12.0) because of conflict with DVCPROHDVideoOutput Quic…

  • Applescript with quicktime and excel2004

    I would appreciate any help on the following.
    I have a lot of quicktime videos I need to look at. Each movie contains many subjects doing diffferent things. Subject A say begins to talk, and I can get the time code of this point by looking at the quicktime time info window.
    When this subject finishes, I can do the same. And, I can get the time this subjectA was talking. The subject A might speak at different times in the movie, and I need to record all this start-end times, and the differences each time, and get a cumulative sum.
    I know to get the time stamp using applescript from a currently open movie.
    tell application "QuickTime Player"
    activate
    try
    --I check if i have qt pro -not shown here
    set this_movie to the name of movie 1
    set this_time to the current time of movie 1
    set movie_scale to the time scale of movie 1
    set this_timecode to my time2timecode(this_time, movie_scale)
    display dialog "Current time of “" & this_movie & "”:" & ¬
    return & return & this_timecode buttons {"Clipboard", "OK"} default button 2
    if the button returned of the result is "Clipboard" then
    set the clipboard to this_timecode
    display dialog "The timecode is now on the clipboard." buttons {"•"} default button 1 giving up after 2
    end if
    end try
    end tell
    Now, the time stamp is in the clipboard, How can I take it into columns in Excel2004 -- using applescript.
    subjA startTime endTime diff
    subjA startTime endTime diff
    subjB startTime endTime diff
    subjA startTime endTime diff
    subjC startTime endTime diff
    subjA startTime endTime diff
    Any help is appreciated. Right now, I want to do this for a ppc running osx tiger and using excel for office 2004, and quicktime 7.x pro.
    Will the script be differrent if this were performed on an intel-mac?
    Rand on PowerMac PPC G5
    PowerMac PPC G5- excel 2004- qtpro7 -- Tiger   Mac OS X (10.4.7)  

    tell application "QuickTime Player"
    activate -- Launch and / or bring forth 'QuickTime'.
    set tList to {} -- List to contain obtained date.
    tell movie 1 to copy name to end of tList -- Place name of current movie into tList.
    repeat
    set {tFlag, tResult} to {0, display dialog "(Start Time) ... Subject letter: " default answer "A" buttons {"OK"} default button 1}
    -- Place Subject Name and scaled Start Time into tList.
    tell movie 1 to set {tSubject, movie_Name, start_time, time_scale} to {text returned of tResult, name, current time, time scale}
    copy {tSubject, start_time / time_scale} to {end of tList, end of tList}
    if ((button returned of (display dialog "End time of Subject: " & tSubject buttons {"Completed", "Continue..."} default button 2)) is "Completed") then set tFlag to 1
    tell movie 1 to set end_time to current time
    copy (end_time / time_scale) to end of tList -- Place scaled End Time into tList.
    if (tFlag = 1) then exit repeat -- Exit infinite loop when 'Completed' button is selected.
    end repeat
    tell application "Microsoft Excel"
    activate -- Launch and / or bring forth 'Excel'.
    if (not (document 1 exists)) then make new document -- Create a new document, if needed.
    -- Add header information to Worksheet.
    set (value of cell 1 of row 1) to "Movie Title: "
    set Column_Titles to {"Subject", "Start Time", "End Time", "Difference"}
    repeat with i from 1 to (count Column_Titles)
    set (value of cell i of row 3) to (item i of Column_Titles)
    end repeat
    -- Add contents of tList to the worksheet.
    set tInc to 1
    repeat with i from 1 to (((count tList) - 1) / 3)
    repeat with j from 1 to 3
    set tInc to (tInc + 1)
    set (value of cell j of row (i + 4)) to (item tInc of tList)
    end repeat
    set (value of cell (j + 1) of row (i + 4)) to ((item tInc of tList) - (item (tInc - 1) of tList))
    end repeat
    end tell
    end tell
      Mac OS X (10.4.4)  

  • Remove numbers after filename and add custom sequence?

    Hi,
    I have to rename quite much of rendered frames which names are like aoPass_000001.png...aoPass_099999.png. I have to replace those numbers to start from 0111111 for example witch I'll input manually when I run rename process. Right now I do it using Automator's Make Sequential and writing new name for it and giving new starting number. Yes, it's doable, but must be some better way to do?
    Also I have few different passes so file structure is like:
    - renderPasses
             - alphaPass
             - aoPass
             - beautyPass
    So I'd like to run for all sub folders at once if possible. They all do share same sequence numbers so maybe remove 6 characters from end might work keeping front side untouched.
    Doable with combinations of Automator or should I learn some Apple script...?
    Thanks!

    Applescript and Automater are discussed in Mac OS X Technologies
    I'll see if a host will move this.

  • First and last frame disappearing off every clip

    Hi,
    Every clip I import in Final cut pro 6.0 loses its first and last frame.
    The clips I import are in photoJpeg / 24p (verified with the -get info- of Quicktime Pro), but once in FCP they are marked as 23.98 ?!?!
    In the browser the info of the clip says 23.98 and also indicates that the clip is 2 frames shorter.
    When opened in the viewer the first and last frames are really missing.
    It gets worse, when a clip is longer (ie: 500 frames), the first and last TWO frames are missing ?!?!
    Am I alone with this problem?
    Please help!!!

    How are these clips getting created? Quicktime does not necessarily associate each frame with a certain TC, and the frame rate is dynamically calculated, rather than simply being hard-coded into the QT metadata. This results in Quicktimes that get created outside of FCP often showing up with different frame rates than you expect.
    You might try exporting movies back out of FCP, ether from the master clips, or from sequences. I have noticed that when I export from a sequence at the correct frame rate, the missing frames come back. Other tools that might come in handy are Compressor for converting batches of files to QTs that FCP will like better, and Cinema Tools for conforming clips to a particular frame rate (like changing them from 24 to 23.98)
    You might also try Dumpster which is a bare-bones utility that will allow you to view and edit the QT metadata directly.
    Try some experiments and post back and let us know what you find out. I found that placing the clips in sequences at the proper frame rate and exporting new movie files worked well, but I have seen timing and frame rate shifts with some clips using this method...
    Hope this helps -
    Max Average

  • Playback of clips only plays between 4 and 12 frames

    Hi all,
    I am fairly new to Premiere, have used After Effects CS4 to produce some clips, but need something that handles editing better, and I thought I would give Premiere CS4 a try.
    Unfortunately, I can't get Source or Sequence preview working.  I click the play button and the video plays for about 1/2 to 1/4 or a second (between 4 and 16 frames) and then stops, returning to the place where I hit play.  Almost like I had selected an in and out of 14 frames and hit "play in to out".
    The duration of the playback is random, but never more than a full second.
    The computer I am on is:
      Model Name: MacBook Pro
      OS: Snow Leopard 10.6.2
      Processor Name: Intel Core 2 Duo
      Processor Speed: 2.4 GHz
      L2 Cache: 3 MB
      Memory: 4 GB
      Bus Speed: 800 MHz
      Chipset Model: GeForce 8600M GT   
      Bus: PCIe
      VRAM (Total): 256 MB
      Vendor: NVIDIA (0x10de)
      RAM Size: 4 GB
      Type: DDR2 SDRAM 667 MHz
      HDD: 500Gb 7200RPM (50% empty)
    Apple system updater says I am up to date.
    I have Adobe Premiere CS4 installed (trial) 4.2.1 (003 (MC: 166418))
    Adobe Updater says I am up to date.
    I have done the following to try and resolve:
    * Tried different source files (mp4, mov)
    * Tried rendering a video in After Effects CS4 as MOV H264 and importing
    * Tried putting still frames on the time line and playing those (no effects, no transitions)
    * Tried playing no video, just music
    * Ensure that "clear all markers" is done on the source and preview monitors
    * Ensure loop is not playing
    * Force in and out markers to a 5 second clip and press play
    * Full deinstall and reinstall of all adobe products (I had some CS3 left overs that I cleaned out)
    * Deleted all adobe application preferences folders before reinstall
    * Deleted plugin cache
    * Created new projects and tried all the above.
    I have tried shutting down every other program before running Premiere, it is definitely not a resources problem, there is 3Gb of RAM free and CPUs sitting at 5% when I try this.
    I am looking at buying Premiere, but if I can't get playback to work it's a bit of a waste
    Anyway, any help or pointers would be appreciated!
    Mikel

    Thanks everyone for the long thread and lots of comments, unfortunately I have tried them all.
    I even purchased a full copy of Premiere Pro (as part of a Masters collection set) and this still has not fixed the problem.
    The screen recording of my problem is exactly the same as the one linked to here: Screen Recording 2 720p.mov, and I am also going to open a support ticket with Adobe.
    Another point is that it even does not work on a tiny video that I used (320 x 240px)  Still same problems.
    This is very frustrating.
    It should be noted that After Effects and Encore both play videos fine in a similar situation, it is just Premiere that is bombing out.
    See the first post for my configuration, it is still the same, except now I own a full copy of Premiere Pro as part of CS4 Masters collection.
    Any further ideas?
    Mikel

  • How do I start, stop and restart a sequence with a periodic input?

    Hi,
    I have written some code that will monitor my com port (rs-232) continuously for an ASCII character (in this case a 'P'). When the P is received, I want a sequence structure to start working. The P will only appear once for a short while, but the sequence should carry on running until it finishes all the frames. On the next time a P appears on my monitor, I want to either stop the sequence structure regardless of which frame its in and restart the sequence from the beginning again or to run the sequence from the start again if it has already completed all the frames.
    What sort of structure do I need to do this, are there any examples?
    James

    James,
    Indiana is correct, my take on this is similiar.
    If you have a 3 element sequence structure for example which runs if 'P' is returned from your COMs thread, you will need to query a variable in each element of the sequence in order to suspend execution of the next/remaining elements in the sequence if this event occurs. You can do this by reading the variable that your COMs thread sets using a case structure in each element of your sequence. In order to re-run your sequence if 'P' is returned during the execution you can simply set the suspend variable and ensure the code is in a while loop to recall the code.
    See the attached example code/screen shot:
    This is however not an elegant solution and the best way would probably be using the events structure and a user event to queue the P events. This is available in 6.1 but I believe its the professional package. See also my implementation using this method, again attached below:
    Hope this helps,
    Kind Regards
    Steven Bird
    Applications Engineer
    National Instruments
    Attachments:
    Example.JPG ‏194 KB

  • Quicktime Frames Play in iMovie but Not Exported File

    I recently imported a quicktime movie clip (.mov) into imovie to use in a new project. I added the quicktime frames to the project and when I viewed the project in imovie everything displayed as expected. When I exported the project to itunes and tried to play, only the still images that were included in the project were displayed, none of the quicktime movie frames were include. I figured maybe itunes didn't like the quicktime frames so I exported the project as a quicktime movie and the original quicktime frames still did not display.
    I'm new to mac so I really stumped as to what I could be doing wrong. I was simply trying to create a screencast so I used snapz to create the original quicktime movie, could that be it?
    Please help!

    Yes. There are many posts here on this issue, but it is not always obvious how to search for them. Snapz by default uses the Animation codec, which in iMovie exports as a black screen. The solution is to 1) convert your clip to a supported codec, and 2) for future clips created in SnapzProZ, use a supported codec like h.264, AIC, etc.
    For posts by the experts on this topic, do a search on "Animation Codec" in this forum.

  • My SD video keeps jumping between the upper and lower frames. So the video starts frame blending and blurring in and out.

    My SD video keeps jumping between the upper and lower frames.  So the video starts frame blending and blurring in and out.  The sequence settings are set to
    Editing Mode: DV NTSC 29.97 frames/second. 
    Pixel Aspect Ration: D1/DV NTSC (0.9091)
    Fileds: Lower Field First
    Display Format: 30fps Non-Drop-Frame Timecode
    720 x480

    What is the source of your video, and exactly what is inside your video?
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • Is it possible to select multiple clips and create a sequence from each individually?

    Is it possible to select multiple clips and create a sequence from each individually?  If you select multiple clips and select "New Sequence from Clip" it puts all of the clips into one sequence.  Is there an easy way to quickly perform this on multiple selected clips separately? 

    So now I *have* used Butler with PPro, and it works very well, here's an idea of how to do it:
    Import folder of clips
    Ensure first clip selected in bin and sorted by Media Type
    Most of these commands need shortcuts assigning - mine listed below
    Macro:
    To create seq from selected clip:
      ‘New seq from clip’ (Shift+CMD+N)
    To duplicate this seq:
      ‘Reveal Sequence in project’ (Shift+F) - not strictly necessary as it will already be selected
      ‘Window | Project’ (CMD+9)
      ‘Edit | Duplicate’ (Shift+CMD+/)
    To rename the duplicate
      ‘Enter’
      Various keystrokes to rename as required
      ‘Enter’ - to make name stick
      ‘Shift+Enter’ - to reselect that sequence
      ‘Esc’ - to get out of editing name
    To change resolution of duplicate:
      ‘Sequence Settings’ (CMD+5)
      ‘Tab’ x 3 (to get to H Frame Size)
      ‘xxxx’ (to enter frame width)
      ‘Tab’ x 1 (to get to V Frame Size)
      ‘yyyy’ (to enter frame height
      ‘Enter’ x 2 as prompt will say previews will have to be deleted
    To then find next clip ready for macro to run again:
      ‘Open in Timeline’ (Shift+CMD+O)
      ‘Match Frame’ (Shift+Spacebar)
      ‘Reveal in Project’ (Shift+CMD+F)
      ‘Window | Project’ (CMD+9)
      ‘Down Arrow’ - to select next clip
    I tried it with Butler (manytricks.com - free trial, $20 to buy) and it worked a treat, takes about 3 secs per clip
    AHK (for windows) is at autohotkeys.com and is free.
    You could start making multiple macros - that would enable you to do grade / resize in middle of duplication - and then export etc, but I figure you can figure that out ;-)

  • I want to know the exactly when the Kinect gives depth frame and color frame in a period of one frame

    Hi, I'm currently using Kinect for Windows v2 to get a blurry sequence of color frames as well as corresponding depth frames. 
    It seems to me that the depth frame is acquired after the exposure time of the color frame. I am using the sample in the CoordinateMappingBasic to acquire the depth frame and the color frame at the same time. 
    But as i've found out by the aligned depth map with color frame, i think Kinect gives depth frame at the end of the exposure time of color frame. I've tried to obtain timestamps by calling a function iColorFrame->get_relative_time, and for the same number
    the timestamps show that depth frame is acquired prior to color frame, which opposes what i said above.. 
    Is there some way that i can know the exact time the Kinect gives depth frame and color frame in a period of one frame.
    Thank you in advance.

    Depth is generated based on IR information so when you acquire the frame, that is when it was created. Using the Multisource Frame Reader(MSFR) this does a lot under the covers to align the color and depth frame. If you want to do your own synchronizing,
    you can use a polling thread to acquire depth on one and color on the other and do your own mechanism that is similar to MSFR. You will never get Color and Depth to align exactly on a particular timestamp. Since color is its own camera, the only thing
    you can be assured of is when the color frame is acquired, the runtime will give you the closest depth frame that will align to it.
    Carmine Sirignano - MSFT

  • Mailbox effect between shared and quicktime video output

    Here are some screenshots from a movie I'm making. You'll see the kid doing the limbo in the clip at the centre of the top image is mailboxed with black top and bottom. I've added some type to the frame (lower portion of bottom screenshot) and it looks like it'll fall outside the image, but when I export the movie as a medium shared video, it turns out fine (upper part of bottom screenshot).  Make sense? I can't figure out why this is happening and where the edges of my frame are. The problem gets serious if I export to Qucktime because the mailbox effect shows while it doesn't show in the medium shared video output.
    Any advice appreciated.

    Hi this worked for me... After you've changed the stuff within the browser close it out completely, Open the actual QuickTime on your PC edit-preferences then you will see both player and QuickTime separately. You need to uncheck automatically start play in both preferences, in the second one it has a browser tab when you click that the default is set checked for automatically play in browser uncheck that go through each tab in both preferences and make sure autoplay is not enabled anywhere, Good luck Rhondar35

  • Best Output Settings for movies via iMovie and Quicktime

    So here's what I don't understand. I can download a 1080 movie trailer, such as Get Smart, and convert it to Apple TV standards via iTunes and have it look amazing.
    However:
    When I digitize my own content, such as TV shows (broadcast TV) from my DVR, or old VHS tapes, why can't I get the EXACT same quality I get as if I were sending these videos to iDVD?
    I capture in DV format using iMovie 6 (don't get me started on 08) and, in the past, when that footage is rendered onto a DVD, it's been fantastic.
    However, when I take that same DV footage and convert it to Apple TV format, it does not look good at all.
    I know the culprit is the FPS rate (24 vs 30), however, I am not understanding how I can take an HD trailer and still have it look great in 720p, but I can't get the same quality from digital video I capture in DV format. That just doesn't make sense to me.
    I read that 24 fps will give that "movie" look, but I want a VIDEO look as an option.
    I've rendered short clips using iMovie, Final Cut Express, MPEG Streamclip and Quicktime directly and none of the Apple TV output is worth it.
    Now a nice, cuddly little software update that would allow Apple TV to play full .mov files would be nice, but I suspect that isn't happening.
    Is there anyone who has any suggestions on taking SD DV footage and making a file that will play on my Apple TV AND still look as good as the original source video?
    I have Apple Cares on the Apple TV but every time I call them for tech support, I am kept on hold upwards of 1/2 hour each time and I get frustrated and hang up.
    PLEASE HELP!
    So ready to put my Apple TV on ebay and run a DVI to HDMI cable from my iMac to my LCD TV....................................

    I have a couple of thoughts about your issue.
    Firstly while you capture to DV, the broadcast tv shows are more likely to be in mpeg2, this itself isn't much of a problem, indeed I do exactly the same if I'm converting a movie that has interludes within it which I wish to remove (import into imovie and export the reference file to AVC in streamclip). This could however explain a little why you find your conversions to DVD (mpeg2) a little better. You also need to remember mpeg2 is lower quality than mpeg4 and even lower quality than AVC. If you watch a clip in mpeg2 it can look better than AVC because AVC is sharper and clearer and shows all the defects mpeg2 simply blurs.
    I also note you might be converting the frame rate to 24 fps, don't do this it will result in jerky video. If you are doing this to retain 720p, you would be much better dropping the resolution to no more than 960 x 540 and keeping your original frame rate, never alter your frame rate. Of note here, if your frame rate is 25 fps it may be accepted by the tv at 720p.
    Finally, you might need to consider what is happening to the resolution of these shows as they go through your workflow process. Your source is likely to be 720 x 480 anamorphic and your workflow is likely changing this to 640 x 480, 853 x 480 or even 1280 x 720 fixed ratio pixels, sometimes this conversion can lead to less than perfect results (another reason your DVD's might look better). Unfortunately imovie will drop these anamorphic flags and you may get better results using another application.
    My results are quite acceptable and I suppose the question is why when yours aren't, but it may simply be a matter of source since I'm in a PAL region.

  • I recently updated to snow leopard version 10.6.3 and quicktime isn't working.  What do I need to do?

    I recently updated to snow leopard version 10.6.3 and quicktime player isn't working.  What do I need to do to get it working again?  I have quicktime player version 10.0.

    Mac OS X 10.6 includes QuickTime versions 10.0 and 7.6.3. The QuickTime 7 player will only be present if a QuickTime Pro key was present at the time of installation, or if specified as part of a custom install, or individually downloaded:
    http://support.apple.com/kb/dl923
    Snow Leopard update 10.6.4 included an update to 7.6.6 (if installed). You can install it from the above link  even though it says for 10.6.3. It's the same version of QuickTime Player 7.6.6.
    (Only QuickTime Player 7.6.3 or 7.6.6 can be updated to "Pro".)
    A Mac OS X v10.6, OS X Lion, and OS X Mountain Lion-compatible version of QuickTime Player 7 is available for use with older media or with AppleScript-based workflows. QuickTime Player 7 can be used to playback formats such as QTVR, interactive QuickTime Movies, and MIDI files. Also, it supports QuickTime 7 Pro registration codes for access to QuickTime Pro functionality.
    How to install Quicktime Player 7 on Snow Leopard, Lion and Mountain Lion when it is not already present:
    http://support.apple.com/kb/HT3678?viewlocale=en_US&locale=en_US

Maybe you are looking for

  • Connecting macbook pro to tv

    hi, does anyone knows how i can connect my macbook pro to my daewoo LCD tv (19'' model DLT-19W4T). Thanks!

  • Creative ZEN MX Sort/organize music

    #Creative ZEN MX Sort/organize music>Device: ZEN MX Firmware: .04.0 So i got a ZEN MX, i was pretty happy with it... but now i'm starting to get very pissed off.. The way its sort his music on **bleep** "mp3 tags" i find it complete bullsh*t! Why? be

  • Photos now carry generic icons instead of a the actual picture

    While taking screenshots one day, I noticed that all the pictures on my desktop had that ugly, generic picture icon (you know, the sheet of paper with the picture of Preview's icon on it?) instead of the mini copy of the actual photo they usually do.

  • Question about using pl/sql to mark records in a table

    I have a table where I have stored college course's details, the pertinent for this questions are the fields: course_number, alt_id1, alt_id2, cross_relation, What I need to do is to identify cross-listed courses (those that have an alt_id1 not null)

  • ACL not Working with Keepalive Configuration

    Hi, I have configured ACL on CSS 11506 with software version 07.50.1_03.0 .After configuring we observed in show keepalive-summary all Server serivce are up except the App server service where keepalive type TCP & Port is configured we tried by remov