mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-09-03 02:13:49 +00:00
Merge README files and crate documentation
This commit is contained in:
parent
b1afc4804a
commit
a0d82ec741
36 changed files with 120 additions and 103 deletions
2
gir
2
gir
|
@ -1 +1 @@
|
||||||
Subproject commit 1bef39f6176e84feb082d536ce4ce6e99d85a418
|
Subproject commit 0d08607eb5b5a98ae6cb560f1bcaa0a7fadfb4ab
|
|
@ -1 +1 @@
|
||||||
Subproject commit 831b4449f0d5d1d30166f40cdf8409c9f395f34d
|
Subproject commit 85bd06bc2edad85889d91855cf8b900ad7c3b02f
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -43,7 +43,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -57,7 +57,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -136,7 +136,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use gio;
|
pub use gio;
|
||||||
|
|
|
@ -40,7 +40,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -66,7 +66,7 @@ provided by the GStreamer project.
|
||||||
Homebrew only installs various plugins if explicitly enabled, so some extra
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -119,7 +119,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use gio;
|
pub use gio;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use gst;
|
pub use gst;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use gio;
|
pub use gio;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
// Take a look at the license at the top of the repository in the LICENSE file.
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
pub use glib;
|
pub use glib;
|
||||||
|
|
|
@ -38,7 +38,7 @@ package manager, or build them from source.
|
||||||
|
|
||||||
On Debian/Ubuntu they can be installed with
|
On Debian/Ubuntu they can be installed with
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \
|
||||||
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
gstreamer1.0-plugins-base gstreamer1.0-plugins-good \
|
||||||
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly \
|
||||||
|
@ -52,7 +52,7 @@ above packages, `libgstreamer-plugins-bad1.0-dev` is installed and
|
||||||
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
that the version is >= 1.12. See the `Cargo.toml` files for the full
|
||||||
details,
|
details,
|
||||||
|
|
||||||
```
|
```shell
|
||||||
# Only if you wish to install gstreamer-player, make sure the version
|
# Only if you wish to install gstreamer-player, make sure the version
|
||||||
# of this package is >= 1.12.
|
# of this package is >= 1.12.
|
||||||
$ apt-get install libgstreamer-plugins-bad1.0-dev
|
$ 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
|
Homebrew only installs various plugins if explicitly enabled, so some extra
|
||||||
`--with-*` flags may be required.
|
`--with-*` flags may be required.
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
$ brew install gstreamer gst-plugins-base gst-plugins-good \
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-rtsp-server \
|
||||||
gst-editing-services --with-orc --with-libogg --with-opus \
|
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)
|
After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ 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
|
#### MSYS2 / pacman
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \
|
$ pacman -S 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 \
|
mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \
|
||||||
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \
|
||||||
|
@ -131,7 +131,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or
|
||||||
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
from [here](https://sourceforge.net/projects/pkgconfiglite/))
|
||||||
and set the `PKG_CONFIG_PATH` environment variable
|
and set the `PKG_CONFIG_PATH` environment variable
|
||||||
|
|
||||||
```
|
```shell
|
||||||
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
$ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
#![cfg_attr(feature = "dox", feature(doc_cfg))]
|
||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
|
#![doc = include_str!("../README.md")]
|
||||||
|
|
||||||
// Re-exported for the subclass gst_plugin_define! macro
|
// Re-exported for the subclass gst_plugin_define! macro
|
||||||
pub use ffi;
|
pub use ffi;
|
||||||
|
|
Loading…
Reference in a new issue