Cuando tenemos una película dividida en varias partes, con Quicktime se nos plantea el problema de que no podemos hacer una playlist con los vídeos y tenemos que ver uno por uno con la tediosa faena de tener que andar a abrir los vídeos y con ello perder el hilo de lo que estamos viendo.

Gracias a este AppleScript que han publicado en Mac OS X Hints podemos concatenar esos vídeos en uno solo:

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"
      if i is equal to 1 then
        make new movie
      end if
      open this_item
      tell movie 1
        rewind
        select all
        copy
        select none
      end tell
      close movie 1 saving no
      tell movie 1
        add
        select none
      end tell
    end tell
  end repeat
end open

Sólo tienes que guardar este AppleScript como una aplicación y luego arrastrar los vídeos al applet que acabamos de crear. Entonces el script ensamblará todos los vídeos en una sola película.

Enlace: Concatenate Quicktime movies via AppleScript