Romain Vimont
Romain Vimont
> ERROR: Decoder 'video': could not send video packet: -1313558101 ```bash $ printf '%x' 1313558101 | xxd -r -p | rev UNKN ``` It's `AVERROR_UNKNOWN`. It's either a bug in...
> mind you the default one worked just fine -- only the resulting video displayed the Quicktime error and the one above didn't. That's unexpected :/ Are you sure that...
The SDL window must have focus to receive keyboard (or mouse) events.
Refs https://wiki.libsdl.org/SDL2/SDL_SetWindowKeyboardGrab (but not sure this allows to do what we want)
Thank you for the report. I will think about it.
The vendor rom calls an internal "Sky-something", which fails. Could you please post your framework.jar? ``` adb pull /system/framework/framework.jar ```
It's weird, your framework.jar is almost empty, it doesn't contains the expected classes.
> ERROR: Decoder 'video': could not send video packet: -1094995529 ```console $ printf '%x' 1094995529 | xxd -r -p | rev INDA ``` The error is `AVERROR_INVALIDDATA`. It seems that...
Correct, you can't enable audio for Android 8. Btw, there is a warning in your logs: > [server] WARN: Audio disabled: it is not supported before Android 11
> I tried to downgrade to scrcpy v1.19 and resolved the issue. With the latest version, does it work if you disable audio (`scrcpy --no-audio`)? What is the exact error...