Skip to content

Instantly share code, notes, and snippets.

View johnazo's full-sized avatar
🎯
Focusing

John Cruz johnazo

🎯
Focusing
View GitHub Profile
@tylercubell
tylercubell / youtube_livestream.py
Created February 14, 2019 16:17
GStreamer Python YouTube Livestream
import os, gi
gi.require_version("Gst", "1.0")
from gi.repository import GObject, Gst
Gst.init(None)
pipeline = Gst.Pipeline()
# Variables.
youtube_stream_key = "your_key_here"
encoder_speed = "ultrafast"