You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to run scrcpy with --video-encoder='any encoder that isnt the one i'm defaulted to from --list-encoders I get ERROR: Invalid server param: ['c2.android.avc.encoder'] and ERROR: Server connection failed
Any idea how to fix this? It happens with every encoder I try.
The text was updated successfully, but these errors were encountered:
Replace argument suggestion:
--video-encoder='c2.android.avc.encoder'
by:
--video-encoder=c2.android.avc.encoder
On Linux, the quotes are interpreted by the shell, but on Windows they
are passed as is.
This was harmless, because even transmitted as is, they were interpreted
by the shell on the device. However, special characters are now
validated since commit bec3321, making
the command fail.
Fixes#5329 <#5329>
When trying to run scrcpy with --video-encoder='any encoder that isnt the one i'm defaulted to from --list-encoders I get ERROR: Invalid server param: ['c2.android.avc.encoder'] and ERROR: Server connection failed
Any idea how to fix this? It happens with every encoder I try.
The text was updated successfully, but these errors were encountered: