Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SihabSahariar/GStreamer-With-PyQt5
Implementation of Gstreamer with Python in PyQt5 GUI
https://github.com/SihabSahariar/GStreamer-With-PyQt5
gstreamer gstreamer-pipeline gstreamer-pyqt5 gstreamer-python pyqt5
Last synced: 2 months ago
JSON representation
Implementation of Gstreamer with Python in PyQt5 GUI
- Host: GitHub
- URL: https://github.com/SihabSahariar/GStreamer-With-PyQt5
- Owner: SihabSahariar
- License: gpl-3.0
- Created: 2023-01-02T10:26:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-02T10:33:14.000Z (about 2 years ago)
- Last Synced: 2024-08-07T23:47:53.402Z (6 months ago)
- Topics: gstreamer, gstreamer-pipeline, gstreamer-pyqt5, gstreamer-python, pyqt5
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GStreamer-With-PyQt5
Implementation of Gstreamer with Python in PyQt5 GUI# What is Gstreamer
GStreamer is an open-source framework for multimedia processing that allows developers to create pipeline-based workflows for manipulating and processing media. It is designed to be modular, with each component in the pipeline functioning as a plug-and-play element that can be easily added, removed, or modified. This makes it ideal for a variety of applications, including media players, video and audio editors, web browsers, and streaming servers. GStreamer provides an API for writing applications using its plugins and handles data flow management and media type handling/negotiation. It is particularly useful in computer vision applications, as it enables the conversion, resizing, and scaling of input and output streams before they are passed to or received from a model.# Installation
```
sudo apt-get install gstreamer1.0-*
pip install pygobject gst-python
```
Once the installation is complete, you should be able to import GStreamer and its components in your Python scripts using the following import statement:
```
import gi
gi.require_version('Gst', '1.0')
from gi.repository import Gst
```