Write opencv frames into gstreamer rtsp server pipeline - baseline profile issue
WisdomPill
anas.el.amraoui at live.com
Wed Nov 22 14:25:15 UTC 2017
First and foremost, thank you for answering. You are very helpful.
I changed come stuff like you suggeted.
1) I started using need-data.
2) I set the caps on the appsrc
3) I changed the format
But I can display only the first frame, then I get the following error
x264 [error]: baseline profile doesn't support 4:4:4
My code is the following.
#!/usr/bin/env python3
from threading import Thread
from time import clock
import cv2
import gi
gi.require_version('Gst', '1.0')
gi.require_version('GstRtspServer', '1.0')
from gi.repository import Gst, GstRtspServer, GObject
class SensorFactory(GstRtspServer.RTSPMediaFactory):
def __init__(self, **properties):
super(SensorFactory, self).__init__(**properties)
self.cap = cv2.VideoCapture(0)
self.number_frames = 0
self.fps = 30
self.duration = 1 / self.fps * 1000
self.timestamp = clock()
self.launch_string = 'appsrc name=source
caps=video/x-raw,format=BGR,width=640,height=480,framerate=30/1 ' \
'! videoconvert ! x264enc
speed-preset=ultrafast tune=zerolatency ' \
'! rtph264pay config-interval=1 name=pay0
pt=96'
self.pipeline = Gst.parse_launch(self.launch_string)
self.appsrc = self.pipeline.get_child_by_name('source')
self.appsrc.get_property('caps').fixate()
self.appsrc.set_property('format', Gst.Format.TIME)
self.bus = self.appsrc.get_bus()
self.appsrc.connect('need-data', self.on_need_data)
self.bus.connect('message::error', self.on_error)
self.bus.connect('message::state-changed', self.on_status_changed)
self.bus.connect('message::eos', self.on_eos)
def on_need_data(self, src, lenght):
if self.cap.isOpened():
ret, frame = self.cap.read()
if ret:
data = frame.tostring()
buf = Gst.Buffer.new_allocate(None, len(data), None)
buf.fill(0, data)
buf.duration = self.fps
timestamp = self.number_frames * self.duration
buf.pts = buf.dts = int(timestamp)
buf.offset = self.number_frames
self.number_frames += 1
retval = server.factory.appsrc.emit('push-buffer', buf)
if retval != Gst.FlowReturn.OK:
print(retval)
def on_status_changed(self, bus, message):
msg = message.parse_state_changed()
print('status_changed message -> {}'.format(msg))
def on_eos(self, bus, message):
print('eos message -> {}'.format(message))
def on_error(self, bus, message):
print('error message -> {}'.format(message.parse_error().debug))
def do_create_element(self, url):
return self.pipeline
class GstServer(GstRtspServer.RTSPServer):
def __init__(self, **properties):
super(GstServer, self).__init__(**properties)
self.factory = SensorFactory()
self.factory.set_shared(True)
self.get_mount_points().add_factory("/test", self.factory)
self.attach(None)
GObject.threads_init()
Gst.init(None)
server = GstServer()
loop = GObject.MainLoop()
loop.run()
--
Sent from: http://gstreamer-devel.966125.n4.nabble.com/
More information about the gstreamer-devel
mailing list