Fast Foward And Rewind
3 posters
Page 1 of 1
Fast Foward And Rewind
Goodnight. I would like to ask that Media Player Classic include fastforward and rewind functions – in the bottom buttons, in the right mouse button menu and when using the keyboard's directional arrows. That it's possible to choose how many seconds will be advanced or regressed in the settings. It's a pretty simple function that this wonderful player lacks. Thanks in advance!
brunoimagem- Posts : 1
Join date : 2023-03-04
Re: Fast Foward And Rewind
There will not be any changes to the buttons.
You can already use the arrow keys in various combinations. See:
Options > Player > Keys
Options > Tweaks > Jump distances
You can also use Ctrl + Mouse Scrollwheel.
You can already use the arrow keys in various combinations. See:
Options > Player > Keys
Options > Tweaks > Jump distances
You can also use Ctrl + Mouse Scrollwheel.
Re: Fast Foward And Rewind
I would like to be able to use Forward Mouse Button / Backward Mouse Button for the same purpose [or any other buttons or keys for that matter]brunoimagem wrote:Goodnight. I would like to ask that Media Player Classic include fastforward and rewind functions
[...]
So that I could stop using such workarounds like e.g. this AutoHotkey script:
[https://www.autohotkey.com/boards/viewtopic.php?f=76&t=104771]
- Code:
#If WinActive("ahk_exe C:\Program Files (x86)\K-Lite Codec Pack\MPC-HC64\mpc-hc64.exe")
; In order to work correctly, this script requires an according configuration of shortcus in MPH HC
~XButton2:: ; Forward Mouse Button
Send {Space Down} ; This pauses the playback [alternatively >>MButton<< could be used]- which averts the unpleasing audio issue of truncated sound glitches
Send {Ctrl Down}{Right Down}
Sleep, 333
while GetKeyState("XButton2")
{
Send {Ctrl Down}{Right Down}
}
Send {Ctrl Up}{Right Up}
Send {Space} ; This restores the playback
Sleep, 111
Return
~XButton1:: ; Browser Backward Mouse Button
Send {Space Down} ; This pauses the playback [alternatively >>MButton<< could be used]- which averts the unpleasing audio issue of truncated sound glitches
Send {Ctrl Down}{Left Down}
Sleep, 333
while GetKeyState("XButton1")
{
Send {Left Down}{Ctrl Down} ; Originally there was no >>{Ctrl Down}<< here - while at the same time it was present in the forward version. Its lack was needed [?] when first >>Sleep<< was set to >>111<<
}
Send {Ctrl up}{Left Up}
Send {Space} ; This restores the playback
Sleep, 111
Return
Last edited by Deus Ex Cinema on Sun Mar 19, 2023 6:40 pm; edited 2 times in total
Deus Ex Cinema- Posts : 13
Join date : 2023-03-18
Re: Fast Foward And Rewind
But that AHK script is for a constant rewarding / forwarding i.e. with a pushed down button - and just merely jumping X amount of time with a 1 click, which has to be repeated over and over to go further
That script merges those 2 functions under a single button
That script merges those 2 functions under a single button
Deus Ex Cinema- Posts : 13
Join date : 2023-03-18
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum