给QuickPlayer添加快进快退功能

在使用Mac自带的QuickPlayer的时候,没有快进快退键很麻烦,于是谷歌了网上的教程,现在分享给大家!

本文引用自软件技巧的博客(软件技巧)

使用Mac自带的 Automator 创建服务

1、打开Automator 软件,选择【新建文稿】
2、文稿类型选择【服务】


img1.png

“服务”收到设置为【没有输入】,位于选择【QuickTime Player】


img2.png

3、在左侧的资源库面板中,将[实用工具]中的[运行 AppleScript]拖拽到右侧区域

img3.png

4、在出现的 AppleScript 编辑框中粘贴以下代码,然后点击运行

// 快进
on run {input, parameters}
    set step to 5
    tell application "QuickTime Player"
        if front document exists then
            if ((current time of front document) + step) ≤ (duration of front document) then
                set (current time of front document) to ((current time of front document) + step)
            else
                set (current time of front document) to (duration of front document)
            end if
        end if
    end tell
    return input
end run
img4.png

5、退出会提示保存,保存名字为快进(按自己喜好设置)
6、同样对快退进行设置,保存为快退

on run {input, parameters}
    set step to 5
    tell application "QuickTime Player"
        if front document exists then
            if ((current time of front document) - step) ≥ 0 then
                set (current time of front document) to ((current time of front document) - step)
            else
                set (current time of front document) to 0
            end if
        end if
    end tell
    return input
end run

此时Automator模块的设置已基本完毕,打开QuickPlayer,可以在顶部找到【服务】选项,右侧会有设置的快退/快进

快捷键设置,打开QuickPlayer

1、点击服务偏好设置,(我的名字设置错误改不过来了,丑丑的)


img5.png

2、找到自己设置的快进快退键,点击会出现添加快捷键,小伙伴们快去添加自己的快捷键吧


img6.png

大功告成~ 快去试试效果吧!!

你可能感兴趣的:(给QuickPlayer添加快进快退功能)