-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e8c049
commit ab97c5e
Showing
2 changed files
with
145 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
Osrs2_control_app is a Windows application that allows manual control of osr2 when funscripts are not available for a video or game. The UI provides a way to interact with osr2 when script synchronization is difficult or impossible. It supports customizable hotkeys and a "always on top" feature that keeps the app on top of other windows so osr2 can be controlled even when the game or video is not fullscreen. This allows adjusting the playback speed of osr2 while viewing media in windowed or borderless modes. Alternatively, osr2 can be controlled entirely through global hotkeys without needing the app visible. Most hotkeys are customizable via the settings or config file, like playback speed, pause/resume, etc. This gives flexible options to manually sync osr2's playback to match unscripted media. | ||
|
||
|
||
|
||
available_keylist = [ | ||
'HOME', | ||
'END', | ||
'Space', | ||
'BACK', | ||
'DELETE', | ||
'LEFT', | ||
'RIGHT', | ||
'UP', | ||
'DOWN', | ||
'F1', | ||
'F2', | ||
'F3', | ||
'F4', | ||
'F5', | ||
'F6', | ||
'F7', | ||
'F8', | ||
'F9', | ||
'F10', | ||
'F11', | ||
'F12', | ||
'TAB', | ||
'Lalt', | ||
'Lctrl', | ||
'Lshift', | ||
'CapsLock', | ||
'MouseLeft', | ||
'MouseRight', | ||
'MouseMiddle', | ||
'Mousex1', | ||
'Mousex2', | ||
'0', | ||
'1', | ||
'2', | ||
'3', | ||
'4', | ||
'5', | ||
'6', | ||
'7', | ||
'8', | ||
'9', | ||
'A', | ||
'B', | ||
'C', | ||
'D', | ||
'E', | ||
'F', | ||
'G', | ||
'H', | ||
'I', | ||
'J', | ||
'K', | ||
'L', | ||
'M', | ||
'N', | ||
'O', | ||
'P', | ||
'Q', | ||
'R', | ||
'S', | ||
'T', | ||
'U', | ||
'V', | ||
'W', | ||
'X', | ||
'Y', | ||
'Z', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
当视频或游戏没有相应的funscripts脚本时,osr2_control_app这个Windows应用程序可以通过UI界面和自定义快捷键来手动控制osr2。它支持将自己置于最前面的功能,这样即使游戏或视频不是全屏,也可以通过这个应用程序控制osr2的播放速度等。这让我们可以在窗口模式或无边框模式下调节osr2的运行节奏,以匹配没有脚本的媒体内容。另外,也可以完全通过全局快捷键来控制osr2,而不需要应用程序可见。大部分快捷键都是可自定义的,如播放速度、暂停/恢复等,可以通过设置和配置文件调整。这提供了灵活的选择来手动同步osr2与无脚本媒体的播放。 | ||
|
||
|
||
可自定义快捷键如下 = [ | ||
'HOME', | ||
'END', | ||
'Space', | ||
'BACK', | ||
'DELETE', | ||
'LEFT', | ||
'RIGHT', | ||
'UP', | ||
'DOWN', | ||
'F1', | ||
'F2', | ||
'F3', | ||
'F4', | ||
'F5', | ||
'F6', | ||
'F7', | ||
'F8', | ||
'F9', | ||
'F10', | ||
'F11', | ||
'F12', | ||
'TAB', | ||
'Lalt', | ||
'Lctrl', | ||
'Lshift', | ||
'CapsLock', | ||
'MouseLeft', | ||
'MouseRight', | ||
'MouseMiddle', | ||
'Mousex1', | ||
'Mousex2', | ||
'0', | ||
'1', | ||
'2', | ||
'3', | ||
'4', | ||
'5', | ||
'6', | ||
'7', | ||
'8', | ||
'9', | ||
'A', | ||
'B', | ||
'C', | ||
'D', | ||
'E', | ||
'F', | ||
'G', | ||
'H', | ||
'I', | ||
'J', | ||
'K', | ||
'L', | ||
'M', | ||
'N', | ||
'O', | ||
'P', | ||
'Q', | ||
'R', | ||
'S', | ||
'T', | ||
'U', | ||
'V', | ||
'W', | ||
'X', | ||
'Y', | ||
'Z', | ||
] |