Add empty lines around code blocks

And fix spaces (do not randomly use non-breaking spaces for
indentation).
pull/29/head
Romain Vimont 6 years ago
parent 8476b4aab8
commit cc4a015256

@ -38,6 +38,7 @@ The client requires _FFmpeg_ and _LibSDL2_.
#### Linux #### Linux
Install the required packages from your package manager (here, for Debian): Install the required packages from your package manager (here, for Debian):
```bash ```bash
# runtime dependencies # runtime dependencies
sudo apt install ffmpeg libsdl2-2.0.0 sudo apt install ffmpeg libsdl2-2.0.0
@ -45,7 +46,7 @@ sudo apt install ffmpeg libsdl2-2.0.0
# build dependencies # build dependencies
sudo apt install make gcc openjdk-8-jdk pkg-config meson zip \ sudo apt install make gcc openjdk-8-jdk pkg-config meson zip \
libavcodec-dev libavformat-dev libavutil-dev \ libavcodec-dev libavformat-dev libavutil-dev \
                libsdl2-dev libsdl2-dev
``` ```
#### Windows #### Windows
@ -64,6 +65,7 @@ Instead, you may want to build it manually. You need [MSYS2] to build the
project. From an MSYS2 terminal, install the required packages: project. From an MSYS2 terminal, install the required packages:
[MSYS2]: http://www.msys2.org/ [MSYS2]: http://www.msys2.org/
```bash ```bash
# runtime dependencies # runtime dependencies
pacman -S mingw-w64-x86_64-SDL2 \ pacman -S mingw-w64-x86_64-SDL2 \
@ -74,10 +76,12 @@ pacman -S mingw-w64-x86_64-make \
mingw-w64-x86_64-gcc \ mingw-w64-x86_64-gcc \
mingw-w64-x86_64-pkg-config \ mingw-w64-x86_64-pkg-config \
mingw-w64-x86_64-meson \ mingw-w64-x86_64-meson \
         zip zip
``` ```
Java (>= 7) is not available in MSYS2, so if you plan to build the server, Java (>= 7) is not available in MSYS2, so if you plan to build the server,
install it manually and make it available from the `PATH`: install it manually and make it available from the `PATH`:
```bash ```bash
export PATH="$JAVA_HOME/bin:$PATH" export PATH="$JAVA_HOME/bin:$PATH"
``` ```
@ -87,6 +91,7 @@ export PATH="$JAVA_HOME/bin:$PATH"
Use [Homebrew] to install the packages: Use [Homebrew] to install the packages:
[Homebrew]: https://brew.sh/ [Homebrew]: https://brew.sh/
```bash ```bash
# runtime dependencies # runtime dependencies
brew install sdl2 ffmpeg brew install sdl2 ffmpeg
@ -94,8 +99,10 @@ brew install sdl2 ffmpeg
# build dependencies # build dependencies
brew install gcc pkg-config meson zip brew install gcc pkg-config meson zip
``` ```
Java (>= 7) is not available in Homebrew, so if you plan to build the server, Java (>= 7) is not available in Homebrew, so if you plan to build the server,
install it manually and make it available from the `PATH`: install it manually and make it available from the `PATH`:
```bash ```bash
export PATH="$JAVA_HOME/bin:$PATH" export PATH="$JAVA_HOME/bin:$PATH"
``` ```
@ -106,23 +113,31 @@ Install the [Android SDK] (_Android Studio_), and set `ANDROID_HOME` to
its directory. For example: its directory. For example:
[Android SDK]: https://developer.android.com/studio/index.html [Android SDK]: https://developer.android.com/studio/index.html
```bash ```bash
export ANDROID_HOME=~/android/sdk export ANDROID_HOME=~/android/sdk
``` ```
Then, build `scrcpy`: Then, build `scrcpy`:
```bash ```bash
meson x --buildtype release --strip -Db_lto=true meson x --buildtype release --strip -Db_lto=true
cd x cd x
ninja ninja
``` ```
You can test it from here: You can test it from here:
```bash ```bash
ninja run ninja run
``` ```
Or you can install it on the system: Or you can install it on the system:
```bash ```bash
sudo ninja install   # without sudo on Windows sudo ninja install # without sudo on Windows
``` ```
This installs two files: This installs two files:
- `/usr/local/bin/scrcpy` - `/usr/local/bin/scrcpy`
@ -146,6 +161,7 @@ In that case, the build does not require Java or the Android SDK.
Download the prebuilt server somewhere, and specify its path during the Meson Download the prebuilt server somewhere, and specify its path during the Meson
configuration: configuration:
```bash ```bash
meson x --buildtype release --strip -Db_lto=true \ meson x --buildtype release --strip -Db_lto=true \
-Dprebuilt_server=/path/to/scrcpy-server.jar -Dprebuilt_server=/path/to/scrcpy-server.jar
@ -159,30 +175,42 @@ sudo ninja install
_At runtime, `adb` must be accessible from your `PATH`._ _At runtime, `adb` must be accessible from your `PATH`._
If everything is ok, just plug an Android device, and execute: If everything is ok, just plug an Android device, and execute:
```bash ```bash
scrcpy scrcpy
``` ```
It accepts command-line arguments, listed by: It accepts command-line arguments, listed by:
```bash ```bash
scrcpy --help scrcpy --help
``` ```
For example, to decrease video bitrate to 2Mbps (default is 8Mbps): For example, to decrease video bitrate to 2Mbps (default is 8Mbps):
```bash ```bash
scrcpy -b 2M scrcpy -b 2M
``` ```
To limit the video dimensions (e.g. if the device is 2540×1440, but the host To limit the video dimensions (e.g. if the device is 2540×1440, but the host
screen is smaller, or cannot decode such a high definition): screen is smaller, or cannot decode such a high definition):
```bash ```bash
scrcpy -m 1024 scrcpy -m 1024
``` ```
If several devices are listed in `adb devices`, you must specify the _serial_: If several devices are listed in `adb devices`, you must specify the _serial_:
```bash ```bash
scrcpy -s 0123456789abcdef scrcpy -s 0123456789abcdef
``` ```
To run without installing: To run without installing:
```bash ```bash
./run x [options] ./run x [options]
``` ```
(where `x` is your build directory). (where `x` is your build directory).

Loading…
Cancel
Save