2017-05-29 22:03:07 -04:00
|
|
|
# this entire module is lovingly based on the gst-launch tool kindly provided
|
|
|
|
# by the gstreamer wizards themselves...with unecessary crap cut out
|
|
|
|
|
|
|
|
# we make the following assumptions here and optimize as such
|
|
|
|
# - all streams are "live"
|
|
|
|
# - will not need EOS (no mp4s)
|
|
|
|
# - will not require SIGINT (this entire program won't understand them anyways)
|
|
|
|
# - no tags or TOCs
|
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
from auxilary import async, waitForPath
|
2017-05-29 22:03:07 -04:00
|
|
|
from threading import Thread
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
import gi, time, logging
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
logger.setLevel(logging.INFO)
|
|
|
|
|
2016-12-30 02:51:56 -05:00
|
|
|
gi.require_version('Gst', '1.0')
|
2017-05-29 22:03:07 -04:00
|
|
|
gi.require_version('GObject', '2.0')
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
from gi.repository import Gst, GObject
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
class GstException(Exception):
|
|
|
|
pass
|
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
def gstPrintMsg(pName, frmt, *args, level=logging.DEBUG, sName=None):
|
2017-05-29 22:03:07 -04:00
|
|
|
if sName:
|
2017-05-30 01:43:09 -04:00
|
|
|
logger.log(level, '[{}] [{}] '.format(pName, sName) + frmt.format(*args))
|
2017-05-29 22:03:07 -04:00
|
|
|
else:
|
2017-05-30 01:43:09 -04:00
|
|
|
logger.log(level, '[{}] '.format(pName) + frmt.format(*args))
|
2017-05-29 22:03:07 -04:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
def processErrorMessage(pName, sName, msg, level=logging.DEBUG):
|
2017-05-29 22:03:07 -04:00
|
|
|
error, debug = msg.parse_error()
|
|
|
|
if debug:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, '{} - Additional debug info: {}', error.message, debug, level=level, sName=sName)
|
2017-05-29 22:03:07 -04:00
|
|
|
else:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, error.message, level=level, sName=sName)
|
2017-05-29 22:03:07 -04:00
|
|
|
raise GstException(error)
|
|
|
|
|
|
|
|
def linkElements(e1, e2, caps=None):
|
|
|
|
if caps:
|
|
|
|
if not e1.link_filtered(e2, caps):
|
|
|
|
raise GstException('cannot link \"{}\" to \"{}\" with caps {}'.format(e1.get_name(), e2.get_name(), caps.to_string()))
|
|
|
|
else:
|
|
|
|
if not e1.link(e2):
|
|
|
|
raise GstException('cannot link \"{}\" to \"{}\"'.format(e1.get_name(), e2.get_name()))
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
def linkTee(tee, *args):
|
|
|
|
i = 0
|
|
|
|
for e in args:
|
|
|
|
teePad = tee.get_request_pad('src_{}'.format(i))
|
|
|
|
ePad = e.get_static_pad('sink')
|
|
|
|
teePad.link(ePad)
|
|
|
|
i += 1
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
# TODO: make it clearer which pipeline everything comes from
|
|
|
|
def eventLoop(pipeline, block=True, doProgress=False, targetState=Gst.State.PLAYING):
|
|
|
|
buffering = False
|
|
|
|
inProgress = False
|
|
|
|
prerolled = targetState != Gst.State.PAUSED
|
|
|
|
|
|
|
|
pName = pipeline.get_name()
|
|
|
|
bus = pipeline.get_bus()
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
msg = bus.timed_pop(1e18 if block else 0)
|
|
|
|
|
|
|
|
if not msg:
|
|
|
|
return
|
|
|
|
|
|
|
|
msgSrc = msg.src
|
|
|
|
msgSrcName = msgSrc.get_name()
|
|
|
|
|
|
|
|
msgType = msg.type
|
|
|
|
msgTypeName = Gst.MessageType.get_name(msgType)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
# messages that involve manipulating the pipeline
|
|
|
|
if msgType == Gst.MessageType.REQUEST_STATE:
|
|
|
|
state = msg.parse_request_state()
|
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
logger.info('Setting state to %s as requested by %s',
|
|
|
|
Gst.Element.get_state_name(state), msgSrcName)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
pipeline.set_state(state)
|
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.CLOCK_LOST:
|
2017-05-30 01:43:09 -04:00
|
|
|
logger.debug('Clock lost. Getting new one.')
|
2017-05-29 22:03:07 -04:00
|
|
|
pipeline.set_state(Gst.State.PAUSED)
|
|
|
|
pipeline.set_state(Gst.State.PLAYING)
|
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.LATENCY:
|
|
|
|
gstPrintMsg(pName, 'Redistributing latency', sName=msgSrcName)
|
|
|
|
pipeline.recalculate_latency()
|
|
|
|
|
|
|
|
# messages that do not require pipeline manipulation
|
|
|
|
elif msgType == Gst.MessageType.BUFFERING:
|
|
|
|
gstPrintMsg(pName, 'Buffering: {}', msg.parse_buffering(), sName=msgSrcName)
|
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.NEW_CLOCK:
|
|
|
|
clock = msg.parse_new_clock()
|
|
|
|
clock = clock.get_name() if clock else 'NULL'
|
|
|
|
gstPrintMsg(pName, 'New clock: {}', clock)
|
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.INFO:
|
|
|
|
error, debug = msg.parse_info()
|
|
|
|
|
|
|
|
if debug:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, debug, level=logging.INFO, sName=msgSrcName)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.WARNING:
|
|
|
|
error, debug = msg.parse_warning()
|
|
|
|
|
|
|
|
if debug:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, '{} - Additional debug info: {}', error.message,
|
|
|
|
debug, level=logging.INFO, sName=msgSrcName)
|
2017-05-29 22:03:07 -04:00
|
|
|
else:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, error.message, level=logging.INFO, sName=msgSrcName)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.ERROR:
|
2017-05-30 01:43:09 -04:00
|
|
|
processErrorMessage(pName, msgSrcName, msg, logging.ERROR)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.STATE_CHANGED:
|
|
|
|
# we only care about pipeline level state changes
|
|
|
|
if msgSrc == pipeline:
|
|
|
|
old, new, pending = msg.parse_state_changed()
|
|
|
|
|
|
|
|
# we only care if we reach the final target state
|
|
|
|
if targetState == Gst.State.PAUSED and new == Gst.State.PAUSED:
|
|
|
|
prerolled = True
|
|
|
|
|
|
|
|
if buffering:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Prerolled, waiting for buffering to finish',
|
|
|
|
level=logging.INFO)
|
2017-05-29 22:03:07 -04:00
|
|
|
continue
|
|
|
|
|
|
|
|
if inProgress:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Prerolled, waiting for progress to finish',
|
|
|
|
level=logging.INFO)
|
2017-05-29 22:03:07 -04:00
|
|
|
continue
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.PROGRESS:
|
|
|
|
progressType, code, text = msg.parse_progress()
|
|
|
|
|
|
|
|
if (progressType == Gst.ProgressType.START or
|
|
|
|
progressType == Gst.ProgressType.CONTINUE):
|
|
|
|
if doProgress:
|
|
|
|
inProgress = True
|
|
|
|
block = True
|
|
|
|
elif (progressType == Gst.ProgressType.COMPLETE or
|
|
|
|
progressType == Gst.ProgressType.CANCELLED or
|
|
|
|
progressType == Gst.ProgressType.ERROR):
|
|
|
|
inProgress = False
|
|
|
|
|
|
|
|
gstPrintMsg(pName, 'Progress: ({}) {}', code, text, sName=msgSrcName)
|
|
|
|
|
|
|
|
if doProgress and not inProgress and not buffering and prerolled:
|
|
|
|
return
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
elif msgType == Gst.MessageType.HAVE_CONTEXT:
|
|
|
|
context = msg.parse_have_context()
|
|
|
|
gstPrintMsg(
|
|
|
|
pName,
|
|
|
|
'Got context: {}={}',
|
|
|
|
context.get_context_type(),
|
|
|
|
context.get_structure().to_string(),
|
|
|
|
sName = msgSrcName
|
|
|
|
)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
elif msgType == Gst.MessageType.PROPERTY_NOTIFY:
|
|
|
|
obj, propName, val = msg.parse_property_notify()
|
|
|
|
|
|
|
|
valStr = '(no value)'
|
|
|
|
|
|
|
|
if val:
|
|
|
|
if GObject.type_check_value_holds(val, GObject.TYPE_STRING):
|
|
|
|
valStr = val.dup_string()
|
|
|
|
|
|
|
|
elif val.g_type.is_a(Gst.Caps.__gtype__):
|
|
|
|
valStr = val.get_boxed().to_string()
|
|
|
|
|
|
|
|
else:
|
|
|
|
valStr = Gst.value_serialize(val)
|
|
|
|
|
|
|
|
gstPrintMsg(pName, '{}: {} = {}', obj.get_name(), propName, valStr, sName=msgSrcName)
|
|
|
|
|
|
|
|
# these are things I might not need...
|
|
|
|
elif msgType == Gst.MessageType.STREAM_START:
|
|
|
|
if msgSrc == pipeline:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Started stream', level=logging.INFO)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
elif msgType == Gst.MessageType.QOS:
|
|
|
|
frmt, processed, dropped = msg.parse_qos_stats()
|
|
|
|
jitter, proportion, quality = msg.parse_qos_values()
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(
|
|
|
|
pName,
|
|
|
|
'QOS stats: jitter={} dropped={}',
|
|
|
|
jitter,
|
|
|
|
'-' if frmt == Gst.Format.UNDEFINED else dropped,
|
|
|
|
sName = msgSrcName
|
|
|
|
)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
elif msgType == Gst.MessageType.ELEMENT:
|
|
|
|
gstPrintMsg(pName, 'Unknown message ELEMENT', sName=msgSrcName)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
elif msgType == Gst.MessageType.UNKNOWN:
|
|
|
|
gstPrintMsg(pName, 'Unknown message', sName=msgSrcname)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
@async(daemon=True)
|
|
|
|
def startPipeline(pipeline, play=True):
|
|
|
|
pName = pipeline.get_name()
|
|
|
|
stateChange = pipeline.set_state(Gst.State.PAUSED)
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Setting to PAUSED', level=logging.INFO)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
if stateChange == Gst.StateChangeReturn.FAILURE:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Cannot set to PAUSE', level=logging.INFO)
|
2017-05-29 22:03:07 -04:00
|
|
|
eventLoop(pipeline, block=False, doProgress=False, targetState=Gst.State.VOID_PENDING)
|
|
|
|
# we should always end up here because live
|
|
|
|
elif stateChange == Gst.StateChangeReturn.NO_PREROLL:
|
|
|
|
gstPrintMsg(pName, 'Live and does not need preroll')
|
|
|
|
elif stateChange == Gst.StateChangeReturn.ASYNC:
|
|
|
|
gstPrintMsg(pName, 'Prerolling')
|
|
|
|
try:
|
|
|
|
eventLoop(pipeline, block=True, doProgress=True, targetState=Gst.State.PAUSED)
|
|
|
|
except GstException:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Does not want to preroll', level=logging.ERROR)
|
2017-05-29 22:03:07 -04:00
|
|
|
# some cleanup here?
|
|
|
|
raise
|
|
|
|
elif stateChange == Gst.StateChangeReturn.SUCCESS:
|
|
|
|
gstPrintMsg(pName, 'Is prerolled')
|
|
|
|
|
|
|
|
# this should always succeed...
|
|
|
|
try:
|
|
|
|
eventLoop(pipeline, block=False, doProgress=True, targetState=Gst.State.PLAYING)
|
|
|
|
except GstException:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Does not want to preroll', level=logging.ERROR)
|
2017-05-29 22:03:07 -04:00
|
|
|
# some cleanup here?
|
|
|
|
raise
|
|
|
|
# ...and end up here
|
|
|
|
else:
|
|
|
|
if play:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Setting to PLAYING', level=logging.INFO)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
# and since this will ALWAYS be successful (maybe)...
|
|
|
|
if pipeline.set_state(Gst.State.PLAYING) == Gst.StateChangeReturn.FAILURE:
|
2017-05-30 01:43:09 -04:00
|
|
|
gstPrintMsg(pName, 'Cannot set to PLAYING', level=logging.ERROR)
|
2017-05-29 22:03:07 -04:00
|
|
|
err = pipeline.get_bus().pop_filtered(Gst.MessageType.Error)
|
2017-05-30 01:43:09 -04:00
|
|
|
processErrorMessage(pName, msgSrcName, err, logging.ERROR)
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
# ...we and end up here and loop until Tool releases their next album
|
|
|
|
try:
|
|
|
|
eventLoop(pipeline, block=True, doProgress=False, targetState=Gst.State.PLAYING)
|
|
|
|
except:
|
|
|
|
# cleanup or recover
|
|
|
|
raise
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
def initCamera(video=True, audio=True):
|
2017-05-29 22:03:07 -04:00
|
|
|
pipeline = Gst.Pipeline.new("camera")
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
vPath = '/dev/video0'
|
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
if video:
|
|
|
|
vSource = Gst.ElementFactory.make("v4l2src", "videoSource")
|
|
|
|
vConvert = Gst.ElementFactory.make("videoconvert", "videoConvert")
|
|
|
|
vScale = Gst.ElementFactory.make("videoscale", "videoScale")
|
|
|
|
vClock = Gst.ElementFactory.make("clockoverlay", "videoClock")
|
|
|
|
vEncode = Gst.ElementFactory.make("omxh264enc", "videoEncoder")
|
|
|
|
vRTPPay = Gst.ElementFactory.make("rtph264pay", "videoRTPPayload")
|
|
|
|
vRTPSink = Gst.ElementFactory.make("multiudpsink", "videoRTPSink")
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-30 01:43:09 -04:00
|
|
|
vSource.set_property('device', vPath)
|
2017-05-29 22:03:07 -04:00
|
|
|
vRTPPay.set_property('config-interval', 1)
|
|
|
|
vRTPPay.set_property('pt', 96)
|
|
|
|
vRTPSink.set_property('clients', '127.0.0.1:9001,127.0.0.1:9002')
|
|
|
|
|
|
|
|
vCaps = Gst.Caps.from_string('video/x-raw,width=640,height=480,framerate=30/1')
|
|
|
|
|
|
|
|
pipeline.add(vSource, vConvert, vScale, vClock, vEncode, vRTPPay, vRTPSink)
|
|
|
|
|
|
|
|
linkElements(vSource, vConvert)
|
|
|
|
linkElements(vConvert, vScale)
|
|
|
|
linkElements(vScale, vClock, vCaps)
|
|
|
|
linkElements(vClock, vEncode)
|
|
|
|
linkElements(vEncode, vRTPPay)
|
|
|
|
linkElements(vRTPPay, vRTPSink)
|
|
|
|
|
|
|
|
if audio:
|
|
|
|
aSource = Gst.ElementFactory.make("alsasrc", "audioSource")
|
|
|
|
aConvert = Gst.ElementFactory.make("audioconvert", "audioConvert")
|
|
|
|
aScale = Gst.ElementFactory.make("audioresample", "audioResample")
|
|
|
|
aEncode = Gst.ElementFactory.make("opusenc", "audioEncode")
|
|
|
|
aRTPPay = Gst.ElementFactory.make("rtpopuspay", "audioRTPPayload")
|
|
|
|
aRTPSink = Gst.ElementFactory.make("multiudpsink", "audioRTPSink")
|
|
|
|
|
|
|
|
aSource.set_property('device', 'hw:1,0')
|
|
|
|
aRTPSink.set_property('clients', '127.0.0.1:8001,127.0.0.1:8002')
|
|
|
|
|
|
|
|
aCaps = Gst.Caps.from_string('audio/x-raw,rate=48000,channels=1')
|
|
|
|
|
|
|
|
pipeline.add(aSource, aConvert, aScale, aEncode, aRTPPay, aRTPSink)
|
|
|
|
|
|
|
|
linkElements(aSource, aConvert)
|
|
|
|
linkElements(aConvert, aScale)
|
|
|
|
linkElements(aScale, aEncode, aCaps)
|
|
|
|
linkElements(aEncode, aRTPPay)
|
|
|
|
linkElements(aRTPPay, aRTPSink)
|
2017-05-30 01:43:09 -04:00
|
|
|
|
|
|
|
waitForPath(vPath) # video is on usb, so wait until it comes back after we hard reset the bus
|
2017-05-29 22:03:07 -04:00
|
|
|
|
|
|
|
startPipeline(pipeline)
|
|
|
|
|
|
|
|
class FileDump:
|
|
|
|
def __init__(self):
|
|
|
|
self.pipeline = Gst.Pipeline.new('filedump')
|
|
|
|
|
|
|
|
aSource = Gst.ElementFactory.make('udpsrc', 'audioSource')
|
|
|
|
aParse = Gst.ElementFactory.make('opusparse', 'audioParse')
|
|
|
|
aQueue = Gst.ElementFactory.make('queue', 'audioQueue')
|
|
|
|
|
|
|
|
vSource = Gst.ElementFactory.make('udpsrc', 'videoSource')
|
|
|
|
vParse = Gst.ElementFactory.make('h264parse', 'videoParse')
|
|
|
|
vQueue = Gst.ElementFactory.make('queue', 'videoQueue')
|
|
|
|
|
|
|
|
mux = Gst.ElementFactory.make('matroskamux', 'mux')
|
|
|
|
|
|
|
|
self.sink = Gst.ElementFactory.make('filesink', 'sink')
|
|
|
|
self.sink.set_property('location', '/dev/null')
|
|
|
|
|
|
|
|
aSource.set_property('port', 8000)
|
|
|
|
vSource.set_property('port', 9000)
|
|
|
|
|
|
|
|
self.pipeline.add(aSource, aParse, aQueue, vSource, vParse, vQueue, mux, self.sink)
|
|
|
|
|
|
|
|
linkElements(vSource, vParse)
|
|
|
|
linkElements(vParse, vQueue)
|
|
|
|
linkElements(vQueue, mux)
|
|
|
|
|
|
|
|
linkElements(aSource, aParse)
|
|
|
|
linkElements(aParse, aQueue)
|
|
|
|
linkElements(aQueue, mux)
|
|
|
|
|
|
|
|
linkElements(mux, self.sink)
|
|
|
|
|
|
|
|
startPipeline(self.pipeline, play=False)
|
|
|
|
|
|
|
|
def setPath(self, path):
|
|
|
|
self.sink.set_property('location', path)
|
|
|
|
|
|
|
|
def play(self):
|
|
|
|
self.pipeline.set_state(Gst.State.PLAYING)
|
|
|
|
|
|
|
|
def pause(self):
|
|
|
|
self.pipeline.set_state(Gst.State.PAUSED)
|
|
|
|
|
|
|
|
Gst.init(None)
|
2016-12-30 02:51:56 -05:00
|
|
|
|
2017-05-29 22:03:07 -04:00
|
|
|
# this works for file dump
|
|
|
|
# gst-launch-1.0 -v udpsrc port=8001 ! application/x-rtp,encoding-name=OPUS,payload=96 !
|
|
|
|
# rtpjitterbuffer ! rtpopusdepay ! queue ! matroskamux name=mux ! filesink location=testicle.mkv \
|
|
|
|
# udpsrc port=9001 ! application/x-rtp,encoding-name=H264,payload=96 ! rtpjitterbuffer ! \
|
|
|
|
# rtph264depay ! h264parse ! queue ! mux.
|