Monday, June 17, 2013

First steps

Installed the packages i'll be needing

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

In this week i'm going to port some modules which i can use 
to set up a basic configuration of flumotion for a stream pipeline. 

I'm going to use the audio test and video test producer.

To import the new PyGst library i do this:
 import gi
 gi.require_version('Gst', '1.0')
 from gi.repository import Gst


No comments :

Post a Comment