mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-08-15 23:08:52 +00:00
Add support for FLAC audio codec
PR #4410 <#https://github.com/Genymobile/scrcpy/pull/4410> Co-authored-by: Romain Vimont <rom@rom1v.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
parent
f23be823fd
commit
4857c5dd59
12 changed files with 103 additions and 16 deletions
|
@ -97,7 +97,7 @@ _scrcpy() {
|
|||
return
|
||||
;;
|
||||
--audio-codec)
|
||||
COMPREPLY=($(compgen -W 'opus aac raw' -- "$cur"))
|
||||
COMPREPLY=($(compgen -W 'opus aac flac raw' -- "$cur"))
|
||||
return
|
||||
;;
|
||||
--video-source)
|
||||
|
@ -125,7 +125,7 @@ _scrcpy() {
|
|||
return
|
||||
;;
|
||||
--record-format)
|
||||
COMPREPLY=($(compgen -W 'mp4 mkv m4a mka opus aac' -- "$cur"))
|
||||
COMPREPLY=($(compgen -W 'mp4 mkv m4a mka opus aac flac' -- "$cur"))
|
||||
return
|
||||
;;
|
||||
--render-driver)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue