gstreamer-player

Python 3 wrapper for playing media via gstreamer


Keywords
gstreamer, python3
License
MIT
Install
pip install gstreamer-player==1.0.0

Documentation

gstreamer-player

Audio player based on gstreamer.

Install

Prerequisites

Debian/Ubuntu/Rasbian:

sudo apt-get install python-gst-1.0 \
    gir1.2-gstreamer-1.0 gir1.2-gst-plugins-base-1.0 \
    gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly \
    gstreamer1.0-tools

Redhat/Centos/Fedora:

sudo yum install -y python-gstreamer1 gstreamer1-plugins-good \
    gstreamer1-plugins-ugly

If you're using a Python virtual environment, symlink the system Python's gst into your env's site_packages.

Python module

pip install gstreamer-player

Usage

from gsp import GstreamerPlayer

player = GstreamerPlayer(None)

player.queue("/path/to/audio.mp3")