From 068b078edfa4f2f10e1824b41548c965b710626d Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Wed, 18 Aug 2021 15:16:39 +0200 Subject: [PATCH] README: Replace `shell` with `console` codeblocks --- gstreamer-app/README.md | 16 ++++++++-------- gstreamer-audio/README.md | 16 ++++++++-------- gstreamer-base/README.md | 16 ++++++++-------- gstreamer-check/README.md | 16 ++++++++-------- gstreamer-controller/README.md | 16 ++++++++-------- gstreamer-editing-services/README.md | 18 +++++++++--------- gstreamer-gl/README.md | 12 ++++++------ gstreamer-gl/egl/README.md | 12 ++++++------ gstreamer-gl/wayland/README.md | 12 ++++++------ gstreamer-gl/x11/README.md | 12 ++++++------ gstreamer-net/README.md | 16 ++++++++-------- gstreamer-pbutils/README.md | 16 ++++++++-------- gstreamer-player/README.md | 16 ++++++++-------- gstreamer-rtp/README.md | 16 ++++++++-------- gstreamer-rtsp-server/README.md | 16 ++++++++-------- gstreamer-rtsp/README.md | 16 ++++++++-------- gstreamer-sdp/README.md | 16 ++++++++-------- gstreamer-video/README.md | 16 ++++++++-------- gstreamer-webrtc/README.md | 16 ++++++++-------- gstreamer/README.md | 16 ++++++++-------- 20 files changed, 153 insertions(+), 153 deletions(-) diff --git a/gstreamer-app/README.md b/gstreamer-app/README.md index a84d4fd09..b0f15728e 100644 --- a/gstreamer-app/README.md +++ b/gstreamer-app/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-audio/README.md b/gstreamer-audio/README.md index 309ecd491..142461b94 100644 --- a/gstreamer-audio/README.md +++ b/gstreamer-audio/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-base/README.md b/gstreamer-base/README.md index 44bee2ff8..64e120e44 100644 --- a/gstreamer-base/README.md +++ b/gstreamer-base/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-check/README.md b/gstreamer-check/README.md index 0b8c19faa..4c4ac67b2 100644 --- a/gstreamer-check/README.md +++ b/gstreamer-check/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-controller/README.md b/gstreamer-controller/README.md index 86a1639a2..a0a955c18 100644 --- a/gstreamer-controller/README.md +++ b/gstreamer-controller/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-editing-services/README.md b/gstreamer-editing-services/README.md index 6c655d684..bd8d0b00d 100644 --- a/gstreamer-editing-services/README.md +++ b/gstreamer-editing-services/README.md @@ -43,7 +43,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -57,9 +57,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -79,7 +79,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -100,7 +100,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -115,7 +115,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -142,7 +142,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -172,7 +172,7 @@ directory. Some further examples for various aspects of GStreamer and how to use it from Rust can be found in the -[examples](https://github.com/sdroege/gstreamer-rs/tree/master/examples) +[examples](https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/tree/master/examples) directory. Various GStreamer plugins written in Rust can be found in the diff --git a/gstreamer-gl/README.md b/gstreamer-gl/README.md index e6d06b968..77b7f3ee1 100644 --- a/gstreamer-gl/README.md +++ b/gstreamer-gl/README.md @@ -40,7 +40,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -48,7 +48,7 @@ $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ ``` The minimum required version of the above libraries is >= 1.14. See -the `Cargo.toml` files for the full details, +the `Cargo.toml` files for the full details. Package names on other distributions should be similar. Please submit a pull request with instructions for yours. @@ -66,7 +66,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -85,7 +85,7 @@ install them, e.g. `gstreamer-1.0-1.14.4-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -100,7 +100,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -125,7 +125,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-gl/egl/README.md b/gstreamer-gl/egl/README.md index 55742c2b4..a2352bedd 100644 --- a/gstreamer-gl/egl/README.md +++ b/gstreamer-gl/egl/README.md @@ -40,7 +40,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -48,7 +48,7 @@ $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ ``` The minimum required version of the above libraries is >= 1.14. See -the `Cargo.toml` files for the full details, +the `Cargo.toml` files for the full details. Package names on other distributions should be similar. Please submit a pull request with instructions for yours. @@ -66,7 +66,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -85,7 +85,7 @@ install them, e.g. `gstreamer-1.0-1.14.4-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -100,7 +100,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -125,7 +125,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-gl/wayland/README.md b/gstreamer-gl/wayland/README.md index 25de0dae6..9bfd5fcd9 100644 --- a/gstreamer-gl/wayland/README.md +++ b/gstreamer-gl/wayland/README.md @@ -40,7 +40,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -48,7 +48,7 @@ $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ ``` The minimum required version of the above libraries is >= 1.14. See -the `Cargo.toml` files for the full details, +the `Cargo.toml` files for the full details. Package names on other distributions should be similar. Please submit a pull request with instructions for yours. @@ -66,7 +66,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -85,7 +85,7 @@ install them, e.g. `gstreamer-1.0-1.14.4-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -100,7 +100,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -125,7 +125,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-gl/x11/README.md b/gstreamer-gl/x11/README.md index f3a2f716c..57ccc21f4 100644 --- a/gstreamer-gl/x11/README.md +++ b/gstreamer-gl/x11/README.md @@ -40,7 +40,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -48,7 +48,7 @@ $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ ``` The minimum required version of the above libraries is >= 1.14. See -the `Cargo.toml` files for the full details, +the `Cargo.toml` files for the full details. Package names on other distributions should be similar. Please submit a pull request with instructions for yours. @@ -66,7 +66,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -85,7 +85,7 @@ install them, e.g. `gstreamer-1.0-1.14.4-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -100,7 +100,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -125,7 +125,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-net/README.md b/gstreamer-net/README.md index 0eafc1b70..9f5f29812 100644 --- a/gstreamer-net/README.md +++ b/gstreamer-net/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-pbutils/README.md b/gstreamer-pbutils/README.md index 0c2e73053..fa49bd355 100644 --- a/gstreamer-pbutils/README.md +++ b/gstreamer-pbutils/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-player/README.md b/gstreamer-player/README.md index 6919b4ea0..35d17f981 100644 --- a/gstreamer-player/README.md +++ b/gstreamer-player/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-rtp/README.md b/gstreamer-rtp/README.md index 50f9baf6e..cdff726b2 100644 --- a/gstreamer-rtp/README.md +++ b/gstreamer-rtp/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-rtsp-server/README.md b/gstreamer-rtsp-server/README.md index 5215e090c..70398c138 100644 --- a/gstreamer-rtsp-server/README.md +++ b/gstreamer-rtsp-server/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-rtsp/README.md b/gstreamer-rtsp/README.md index 827e68697..4fc593c28 100644 --- a/gstreamer-rtsp/README.md +++ b/gstreamer-rtsp/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-sdp/README.md b/gstreamer-sdp/README.md index 24a9628cc..831d08a1c 100644 --- a/gstreamer-sdp/README.md +++ b/gstreamer-sdp/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-video/README.md b/gstreamer-video/README.md index e3b56e1f6..bf354289a 100644 --- a/gstreamer-video/README.md +++ b/gstreamer-video/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer-webrtc/README.md b/gstreamer-webrtc/README.md index d0a0f04c2..38dc7d79d 100644 --- a/gstreamer-webrtc/README.md +++ b/gstreamer-webrtc/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` diff --git a/gstreamer/README.md b/gstreamer/README.md index 97ccd4d80..7f125e2c1 100644 --- a/gstreamer/README.md +++ b/gstreamer/README.md @@ -38,7 +38,7 @@ package manager, or build them from source. On Debian/Ubuntu they can be installed with -```shell +```console $ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \ @@ -52,9 +52,9 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and that the version is >= 1.12. See the `Cargo.toml` files for the full details, -```shell -# Only if you wish to install gstreamer-player, make sure the version -# of this package is >= 1.12. +```console +$ # Only if you wish to install gstreamer-player, make sure the version +$ # of this package is >= 1.12. $ apt-get install libgstreamer-plugins-bad1.0-dev ``` @@ -74,7 +74,7 @@ provided by the GStreamer project. Homebrew only installs various plugins if explicitly enabled, so some extra `--with-*` flags may be required. -```shell +```console $ brew install gstreamer gst-plugins-base gst-plugins-good \ gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \ gst-editing-services --with-orc --with-libogg --with-opus \ @@ -95,7 +95,7 @@ install them, e.g. `gstreamer-1.0-1.12.3-x86_64.pkg` and After installation, you also need to install `pkg-config` (e.g. via Homebrew) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ``` @@ -110,7 +110,7 @@ the GStreamer project. #### MSYS2 / pacman -```shell +```console $ pacman -S glib2-devel pkg-config \ mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ @@ -137,7 +137,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -```shell +```console $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ```