mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-10-03 14:48:49 +00:00
Add --camera-fps
Add a new option for specifying the camera frame rate. By default, Android's default frame rate (30 fps) is used. PR #4213 <https://github.com/Genymobile/scrcpy/pull/4213> Signed-off-by: Andrew Gunnerson <accounts+github@chiller3.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
parent
928f8b8eb3
commit
4722bff423
13 changed files with 72 additions and 3 deletions
|
@ -13,6 +13,7 @@ _scrcpy() {
|
|||
--camera-ar=
|
||||
--camera-id=
|
||||
--camera-facing=
|
||||
--camera-fps=
|
||||
--camera-size=
|
||||
--crop=
|
||||
-d --select-usb
|
||||
|
@ -156,6 +157,7 @@ _scrcpy() {
|
|||
|--audio-output-buffer \
|
||||
|--camera-ar \
|
||||
|--camera-id \
|
||||
|--camera-fps \
|
||||
|--camera-size \
|
||||
|--crop \
|
||||
|--display-id \
|
||||
|
|
|
@ -20,6 +20,7 @@ arguments=(
|
|||
'--camera-ar=[Select the camera size by its aspect ratio]'
|
||||
'--camera-id=[Specify the camera id to mirror]'
|
||||
'--camera-facing=[Select the device camera by its facing direction]:facing:(front back external)'
|
||||
'--camera-fps=[Specify the camera capture frame rate]'
|
||||
'--camera-size=[Specify an explicit camera capture size]'
|
||||
'--crop=[\[width\:height\:x\:y\] Crop the device screen on the server]'
|
||||
{-d,--select-usb}'[Use USB device]'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue