@chown
Yes those links are great I will have to investigate them. We have only tried solutions for PC but we have access to a mac.
on open theMovieFiles
tell application "Finder"
set theSortedMovieFiles to sort theMovieFiles by name
end tell
tell application id "com.apple.quicktimeplayer"
activate
make new document
repeat with aMovieFile in theSortedMovieFiles
open (aMovieFile as alias)
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 repeat
tell document 1
rewind
end tell
end tell
end open
Try saving this as an AppleScript application (i.e., a droplet):
Code:on open theMovieFiles tell application "Finder" set theSortedMovieFiles to sort theMovieFiles by name end tell tell application id "com.apple.quicktimeplayer" activate make new document repeat with aMovieFile in theSortedMovieFiles open (aMovieFile as alias) 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 repeat tell document 1 rewind end tell end tell end open
This works great under Snow Leopard and not at all in Lion. Can someone please update it for the new OS?
Link:As mentioned, you will need QuickTime Player 7 with the Pro registration (this is not the same application as the default QuickTime Player).
Link:
QuickTime Player 7 is available on your Installation DVD (Leopard/Snow Leopard) or via Apple (Lion/Mountain Lion):
Installing QuickTime Player 7 on Mac OS X v10.6 or Later
Try saving this as an AppleScript application (i.e., a droplet):
This script concatenates separate movie files into one QuickTime movie...
This is really awesome Thank you, Peter!
I was able to get it to work quickly the only piece I'm still trying to figure out is what (if anything) can/should be done while saving the resulting file. e.g., the QT property inspector shows that the combined file still has many "pieces"and I'm not sure if that matters or not.
Thanks again! 🙂
#!/bin/sh
cat $(ls /path/to/frames) > /path/to/complete/file/nameOfFile.mpg