使用AppleScript播放指定時間的電影片段

來源:互聯網
上載者:User

標籤:

要在公司中分享一個電影,為了能夠簡單的播放一些電影的片段,使用AppleScript和MPlayerX的seekto功能來播放指定時間段的電影。

 

tell application "Finder"    open document file "xxx.mkv" of folder "Movies" of folder "vector" of folder "Users" of startup disk using application file "MPlayerX.app" of folder "Applications" of startup disk    tell application "MPlayerX"        activate        pause        delay 1        set isFullScreenAfter to false        tell application "System Events"            try                tell front window of (first process whose frontmost is true)                    set isFullScreen to get value of attribute "AXFullScreen"                    set isFullScreenAfter to not isFullScreen                    set value of attribute "AXFullScreen" to isFullScreenAfter                end tell            end try        end tell        delay 1        (* seekto 1539*)        seekto 1650        play    end tell    delay 82    tell application "MPlayerX"        tell application "System Events"            try                tell front window of (first process whose frontmost is true)                    set isFullScreen to get value of attribute "AXFullScreen"                    set isFullScreenAfter to not isFullScreen                    set value of attribute "AXFullScreen" to isFullScreenAfter                end tell            end try        end tell        pause        delay 1    end tellend tell 

開啟電影后自動全屏播放,等待一段時間後退出全屏並暫停。

由於MPlayerX沒有close方法,需要在播放完成之後手動關閉播放器。

使用AppleScript播放指定時間的電影片段

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.