<div dir="ltr"><div><div><div>Oh, you are using ts muxing for sending video with vlc... I my tool won't do for you since I use it for capturing rtp frames from IP cams. But you can change <br><br>self.pipeline = Gst.parse_launch('rtspsrc name=source latency=0 ! rtph264depay name=demux ! h264parse ! matroskamux name=mux  ! filesink name=sink')<br><br></div>to <br><br>self.pipeline = Gst.parse_launch('rtspsrc name=source latency=0 ! tsdemux name=demux ! h264parse ! matroskamux name=mux  ! filesink name=sink')<br><br></div>and the same with audio pipeline.<br><br></div>Hope that helps<br></div><div class="gmail_extra"><br><div class="gmail_quote">2016-01-28 2:48 GMT+03:00 Krutskikh Ivan <span dir="ltr"><<a href="mailto:stein.hak@gmail.com" target="_blank">stein.hak@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>If you want a simple recording tool, you can try my record.py from attachment.<br><br></div>It's not very tidy in terms of coding, but it works with both vlc/gstreamer libraries. Just make sure you have both gstreamer headers and vlc.py available on your system.<br><br></div><div>sample cmdline is:<br><br></div><div>record.py -u rtsp://some_ip -t 10 -o /some/file.mp4  --engine gst (can be libvlc)<br><br></div><div>by default it uses matroskamux for file muxing<br></div><div><br></div>Cheers!<br></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">2016-01-27 15:26 GMT+03:00 Sebastian Dröge <span dir="ltr"><<a href="mailto:sebastian@centricular.com" target="_blank">sebastian@centricular.com</a>></span>:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><span>On Di, 2016-01-26 at 09:56 -0800, Giacomo D wrote:<br>
> *Hi Sebastian!<br>
> I have tried to uninstall gstreamer-vaapi and to upgrade GStreamer<br>
> from 1.6.1 to 1.7.1 and now I get this error when I run my project:*<br>
<br>
</span>The GStreamer update shouldn't have been needed.<br>
> [...]<br>
> What's happening?<br>
<br>
It looks like somehow you broke your python gobject-introspection<br>
setup, or even more of the python setup with external modules.<br>
<div><div><br>
--<br>
Sebastian Dröge, Centricular Ltd · <a href="http://www.centricular.com" rel="noreferrer" target="_blank">http://www.centricular.com</a><br>
<br>
</div></div><br></div></div><span class="">_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br></span></blockquote></div><br></div>
</blockquote></div><br></div>