Last active
June 17, 2025 10:37
-
-
Save Howard20181/1446a1c1ca574da0c33b2f9f8f415555 to your computer and use it in GitHub Desktop.
scrcpy
This file contains hidden or 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
| @echo off | |
| scrcpy-console-h265 --display-ime-policy=local --video-codec-options=i-frame-interval:float=2,profile=1,level=65536,priority=0,bitrate-mode=1 --no-vd-destroy-content --new-display=3840x2160/320 -b 40M --no-vd-system-decorations --max-fps=60 %* |
This file contains hidden or 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
| @echo off | |
| scrcpy-console --video-codec=h265 --video-encoder=c2.qti.hevc.encoder --disable-screensaver --stay-awake --mouse-bind=+hbs:n+++ -K --render-driver=opengl %* |
This file contains hidden or 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
| strCommand = "cmd /c scrcpy-console-h265" | |
| For Each Arg In WScript.Arguments | |
| strCommand = strCommand & " """ & replace(Arg, """", """""""""") & """" | |
| Next | |
| CreateObject("Wscript.Shell").Run strCommand, 0 |
This file contains hidden or 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
| @echo off | |
| 4k-h265 --no-audio --start-app=eu.kanade.tachiyomi.sy |
This file contains hidden or 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
| strCommand = "cmd /c TachiyomiSY.bat" | |
| CreateObject("Wscript.Shell").Run strCommand, 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment