mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Add support for AAC audio codec
Add option --audio-codec=aac. PR #3757 <https://github.com/Genymobile/scrcpy/pull/3757>
This commit is contained in:
parent
56c65bd4c6
commit
0cd6e4d5dd
8 changed files with 17 additions and 6 deletions
|
|
@ -73,7 +73,7 @@ _scrcpy() {
|
|||
return
|
||||
;;
|
||||
--audio-codec)
|
||||
COMPREPLY=($(compgen -W 'opus' -- "$cur"))
|
||||
COMPREPLY=($(compgen -W 'opus aac' -- "$cur"))
|
||||
return
|
||||
;;
|
||||
--lock-video-orientation)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ local arguments
|
|||
arguments=(
|
||||
'--always-on-top[Make scrcpy window always on top \(above other windows\)]'
|
||||
'--audio-bit-rate=[Encode the audio at the given bit-rate]'
|
||||
'--audio-codec=[Select the audio codec]:codec:(opus)'
|
||||
'--audio-codec=[Select the audio codec]:codec:(opus aac)'
|
||||
{-b,--video-bit-rate=}'[Encode the video at the given bit-rate]'
|
||||
'--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