Romain Vimont

Results 1938 comments of Romain Vimont

> 'com.genymobile.scrcpy.Server {}'.format(SCREENCOPY_SERVER_VERSION), Not related, but the version should be passed as a separate parameter (it probably works because in the end `adb shell` flattens the whole command). What is...

Also, could you reproduce with another device? It seems I can't reproduce, even if I put all arguments explicitly.

Might be a limitation of `app_process` (or adb shell padding arguments to app_process): ``` console $ printf '/ com.genymobile.scrcpy.Server 1.21 log_level=info bit_rate=8000000 max_fps=0 lock_video_orientation=-1 tunnel_forward=true send_frame_meta=false control=false show_touches=false stay_awake=false power_off_on_close=false...

Thank you :+1: (and sorry for the delay). I rebased on `dev` (and squashed your 2 commits), and made the following changes: - extracted a function `fixedPointToFloat()` used for `pressure`...

I changed to encode as a signed integer (with a more natural two's complement): - `-1.0f` → `0x8000` - `-0.5f` → `0xC000` - `0.0f` → `0x0000` - `0.5f` → `0x4000`...

@yume-chan Did you have a change to test/review? (It's not urgent)

I merged into `dev`. Everything looks good to me.

If you resize the client window, you can auto-resize with either: - Alt+w, or - double click on the black borders. See [shortcuts](https://github.com/Genymobile/scrcpy#shortcuts)

scrcpy always preserve the aspect ratio. The rendering is done on the device, so if you want to change the size, you must resize your device (cf https://stackoverflow.com/questions/18500611/android-how-to-use-adb-shell-wm-to-simulate-other-devices).

> so i want the image to fit to the window, but if i do as u say, with double click, then width does not increase, it doesn't change the...