Skip to content

Instantly share code, notes, and snippets.

View artur-kas's full-sized avatar

Artur Kasinski artur-kas

View GitHub Profile
@artur-kas
artur-kas / custom_message.py
Created October 11, 2022 03:43 — forked from tylercubell/custom_message.py
GStreamer Python Custom Message
import gi
gi.require_version('Gst', '1.0')
from gi.repository import GObject, Gst
from threading import Thread, Event
Gst.init(None)
class Main:
def __init__(self):
self.pipeline = Gst.Pipeline.new("pipeline")
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
# GStreamer SDK Tutorials in Python
#
# basic-tutorial-2
#
"""
basic-tutorial-2: GStreamer concepts
http://docs.gstreamer.com/display/GstSDK/Basic+tutorial+2%3A+GStreamer+concepts
"""