我给你写了一个ahk脚本,你安装autohotkey以后运行这个就行,会在检测到potplayer进程后触发按住→键加速3倍,松开→键恢复1倍,如果要更快倍速就在ccccc那里多打几个cccc
\#IfWinActive ahk_exe PotPlayerMini64.exe
single:=0
Right::
ToolTip, >>>
if(single=0){
Send, cccccccccccccccccccc
single:=1
}
Return
Right Up::
send, z
ToolTip
single:=0
return
\#IfWinActive