From 74dc68ad527a66f309500f80b8fbcea802ee5017 Mon Sep 17 00:00:00 2001 From: Jonty Sewell Date: Tue, 10 Jul 2018 13:28:22 +0100 Subject: [PATCH] We don't need python-gobject after all, that is a deprecated package --- .travis.yml | 6 ++++-- doc/source/tutorial.rst | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7b5d146..43357a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,11 @@ addons: - gstreamer1.0-plugins-base - gstreamer1.0-plugins-good - gir1.2-gstreamer-1.0 - - python-gst-1.0 - - python-gobject + - python-gst-1.0 + - python3-gst-1.0 - python-redis + - python3-redis + - python-gobject - python-gi services: diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst index 2c91427..9efcfcc 100755 --- a/doc/source/tutorial.rst +++ b/doc/source/tutorial.rst @@ -21,8 +21,9 @@ On Debian Stretch / Ubuntu Xenial you can install the prerequisites with the fol .. code-block:: bash - sudo apt install gstreamer1.0-plugins-base gstreamer1.0-plugins-good gir1.2-gstreamer-1.0 python-gst-1.0 python-gobject python-redis python-gi python-setuptools + sudo apt install gstreamer1.0-plugins-base gstreamer1.0-plugins-good gir1.2-gstreamer-1.0 python-gst-1.0 python-redis python-gi python-setuptools +If you wish to use Python 3, you must install `python3-redis`, `python3-gst-1.0` and `python3-setuptools` instead of the Python 2 equivalents. The GStreamer Opus plugin has graduated from the 'bad' plugins repository to the 'base' repository as of 2015. Older distributions may require the `gstreamer1.0-plugins-bad` package installed. In order to ensure compatibility, it is recommended that both ends of the link use the same version of GStreamer, which is most easily achieved by running the same operating system version on each end and installing the distribution's packages as detailed above.