1
초보다는 프레임 번호마다 비디오 파일을 트리밍하고 싶습니다. 는 지금까지 몇 가지 옵션을 시도하고이 지금까지 가장 성공적인 하나입니다퀵타임에서 애플 스크립트 트림 동영상
set start_trim to 5
set end_trim to 6
tell application "QuickTime Player"
activate
try
set movieFile to (the POSIX path of ("PathToMovieFolder")) & "MyMovie.mov"
on error errorMsg number errorNum
display alert errorMsg & space & errorNum message ¬
"An error occured trying to find the file " & movieFile & "." & return & ¬
"Check the file path exists, and the file spelling." as warning giving up after 60
end try
try
open movieFile with presenting
delay (0.25)
present document 1
delay (0.25)
trim document 1 from start_trim to end_trim
display alert errorMsg & space & errorNum message ¬
"An error occured trying to open & play the file " & movieFile & "." & return & ¬
"Check the file path exists, and the set delay time" as warning giving up after 60
end try
end tell
그것이 무엇을하는가 초보다는 정확한 프레임에 트림이다. 해결 방법에 대한 아이디어가 있으십니까?
감사 남자! 완벽하게 작동하는 것 같습니다. – user1627273