使用 Applescript 播放 Quicktime Player 视频

Play Quicktime Player video using Applescript

所以我写了一个小脚本来打开我想播放的视频。一打开,就应该播放。我尝试使用 play,尽管 Quicktime 可以识别“播放”这个词,但它实际上并没有播放。我该怎么办?

tell application "Quicktime player"
    open file "/directory/to/the/file/"
    play --doesn't work
end tell

如果您想使用 完全限定的 POSIX 路径名,您可以使用以下命令 open播放 文件:

tell application "QuickTime Player"
    activate
    set thisFile to open POSIX file "/path/to/filename.mp4"
    play thisFile
end tell