So here&#39;s an update. <br><br>All the scripts I ran, and gave results to, in the previous email, were all run locally, on one machine. <br><br>I tried to use my imperfect, but functional, solution in my real application: wireless video streaming from one device to another. It didn&#39;t work as well as it did when both transmit and receive scripts were running on the same machine. The recorded video looked like this:<br>
<a href="http://youtu.be/YfsFI7PlStw">http://youtu.be/YfsFI7PlStw</a><br><br>Note: At the edges of reception, when I&#39;m outside my yard, video starts getting very pixlated and the framerates drop. That&#39;s not really GStreamers fault, many of the packets are just getting dropped. I&#39;m most concerned with the frame rates when I&#39;m close to my router. <br>
<br>I will say that my display script showed video perfectly smooth on the screen, responsively and with a high frame rate, so I don&#39;t think there&#39;s any problems with the network (at close enough range).<br><br>gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true port=5010 caps=&#39;application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;, payload=(int)96, ssrc=(uint)3315029550, clock-base=(uint)3926529534, seqnum-base=(uint)45576&#39; ! gstrtpjitterbuffer drop-on-latency=true latency=500  ! rtph264depay ! ffdec_h264 ! ffmpegcolorspace ! coglogoinsert location=&quot;equisightoverlay.png&quot; ! ffmpegcolorspace ! ximagesink sync=false<br>
<br>But as you can see with the video recording above the video isn&#39;t recorded linearly. It pushes some frames through quickly, pauses, and then quickly pushes frames through again. It seems like all the frames are getting recorded, but they&#39;re not moving at a consistent pace. <br>
<br>I decided to make some adjustments to the record script to try and reduce this effect by increasing the latency of gstrtpjitterbuffer, adding a queue before x264enc and setting latency on the x264enc to zero. <br><br>
gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true port=5010 caps=&#39;application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;, payload=(int)96, ssrc=(uint)3315029550, clock-base=(uint)3926529534, seqnum-base=(uint)45576&#39; ! queue ! gstrtpjitterbuffer drop-on-latency=true latency=2000 ! rtph264depay ! ffdec_h264 ! queue max-size-buffers=0 max-size-bytes=0 max-size-time=0 ! x264enc tune=zerolatency ! matroskamux ! filesink location=video.mkv<br>
<br>The result was this:<br><a href="http://youtu.be/x2QbLaImkt0">http://youtu.be/x2QbLaImkt0</a><br><br>It looks like it helped make the frame rate a bit more consistent, but not by much. Does anyone have any ideas on how to improve the inconsistent frame rate problem? I have a hunch it&#39;s caused by the x264enc element (or lack of using it correctly). Of course if I could sidestep having to re-compress the video, this problem would be alleviated. But I&#39;m sure I&#39;m missing a major setting somewhere that would solve this problem. <br>
<br><div class="gmail_quote">On Wed, May 16, 2012 at 11:28 AM, W.A. Garrett Weaver <span dir="ltr">&lt;<a href="mailto:weaverg@email.arizona.edu" target="_blank">weaverg@email.arizona.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Thank you for the suggestions Rufael and Tiago. <br><br>I tried writing the H264 stream to an mp4 file with mp4mux. My strategy for developing this receive and write script is to write a single test script is to see if a particular mux can write a file directly from the output of rtph264depay and then, if it works, integrate the mux into the network receive and write script. <br>

<br>My test script for writing to an mp4 file was:<br>gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39; ! x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! rtph264pay ! rtph264depay ! mp4mux ! filesink location=video.mp4<br>

<br>This wrote a file but the file was 0 bytes in size. <br><br>If you were to take out the &quot;rtph264pay ! rtph264depay&quot; part:<br>gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39;
 ! x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! mp4mux ! filesink location=video.mp4<br><br>It writes a file that takes up space, but when playing the file my media player says it doesn&#39;t contain playable streams (I&#39;m closing the script with ctrl + c by the way).<br>

<br>When I test the matroskamux element:<br>gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39; ! x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! rtph264pay ! rtph264depay ! matroskamux ! filesink location=video.mkv<br>

<br>I get a file that is 0 bytes in size.<br><br>Removing the &quot;rtph264pay ! rtph264depay&quot; part of the script produces a playable file (although the playhead progress is not liner, it starts in the middle and slows down increasingly as it approaches the end of the movie). <br>

<br>Adding in &quot;ffdec_h264 ! ffmpegcolorspace&quot; to the script:<br><br>gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39; ! x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! rtph264pay ! rtph264depay ! ffdec_h264 ! ffmpegcolorspace ! matroskamux ! filesink location=video.mkv<br>

<br>Produces a playable (but very large file). <br><br>Extending this to the network receive script: <br>gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true port=5010 caps=&#39;application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;, payload=(int)96, ssrc=(uint)<a href="tel:3315029550" value="+13315029550" target="_blank">3315029550</a>, clock-base=(uint)3926529534, seqnum-base=(uint)45576&#39; ! gstrtpjitterbuffer drop-on-latency=true latency=500  ! rtph264depay ! ffdec_h264 ! ffmpegcolorspace ! matroskamux ! filesink location=video.mkv<br>

<br>Produces a playable, but large file. This &quot;works&quot; but is an ineffective solution because uncompressed video is too large. <br><br>If I try to add in a x264 encode before the matroskamux, to compress the video, after it has been received:<br>

gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true port=5010 caps=&#39;application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;, payload=(int)96, ssrc=(uint)<a href="tel:3315029550" value="+13315029550" target="_blank">3315029550</a>, clock-base=(uint)3926529534, seqnum-base=(uint)45576&#39; ! gstrtpjitterbuffer drop-on-latency=true latency=500  ! rtph264depay ! ffdec_h264 ! x264enc ! matroskamux ! filesink location=video.mkv<br>

<br>This produces a playable, compressed video file (although the playhead progress is not liner, it starts in the middle 
and slows down increasingly as it approaches the end of the movie). But this is an inelegant solution because I needed to decompress, then re compress the video as it comes in. <br><br>There must be a way to take the incoming H264 stream and write it directly to a file. <br>
<div class="HOEnZb"><div class="h5">
<br><div class="gmail_quote">On Tue, May 15, 2012 at 10:02 AM, Tiago Katcipis <span dir="ltr">&lt;<a href="mailto:katcipis@inf.ufsc.br" target="_blank">katcipis@inf.ufsc.br</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Hi,<br><br><div class="gmail_quote"><div>On Tue, May 15, 2012 at 8:43 AM, Rufael Mekuria <span dir="ltr">&lt;<a href="mailto:R.N.Mekuria@cwi.nl" target="_blank">R.N.Mekuria@cwi.nl</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


I don&#39;t think its such a good idea to save H.264 to avi, I would recommend trying mp4mux and save to mp4 instead,<br></blockquote></div><div><br>There is also Matroska:<br><br><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-good-plugins/html/gst-plugins-good-plugins-matroskamux.html" target="_blank">http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-good-plugins/html/gst-plugins-good-plugins-matroskamux.html</a><br>


<br>Best regards,<br>Tiago Katcipis<br> </div><div><div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
hope it helps, with me this works fine.<br>
<br>
best,<br>
<br>
Rufael<br>
<br>
----- Oorspronkelijk bericht -----<br>
Van: &quot;garrett&quot; &lt;<a href="mailto:weaverg@email.arizona.edu" target="_blank">weaverg@email.arizona.edu</a>&gt;<br>
Aan: <a href="mailto:gstreamer-devel@lists.freedesktop.org" target="_blank">gstreamer-devel@lists.freedesktop.org</a><br>
Verzonden: Dinsdag 15 mei 2012 04:00:28<br>
Onderwerp: Re: How to save incoming h264 stream without re-encoding?<br>
<div><div><br>
I&#39;m trying to do the exact same thing. I stumbled upon a heap of unanswered<br>
threads like these on my search, so I&#39;ll bump this one because it&#39;s most<br>
similar to what I want to do.<br>
<br>
I&#39;m trying to transmit H264 video in RTP packets, over UDP and then on the<br>
receiving end reconvert the packets into an H264 stream and both output the<br>
stream with ximagesink and save the h264 stream into a file.<br>
<br>
I can output the live stream to ximagesink just fine. Saving the stream is a<br>
whole different ordeal. No matter what I do, I cannot save a stream to a<br>
file.<br>
<br>
I&#39;ll start by posting my transmit script.<br>
gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39; !<br>
x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! queue !<br>
rtph264pay ! udpsink host=224.1.1.1 port=5010 auto-multicast=true<br>
<br>
This is my most desired receiving script (it&#39;s supposed to both show the<br>
video in a window and write the video to an avi file):<br>
gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true<br>
port=5010 caps=&#39;application/x-rtp, media=(string)video,<br>
clock-rate=(int)90000, encoding-name=(string)H264,<br>
sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;,<br>
payload=(int)96, ssrc=(uint)<a href="tel:3315029550" value="+13315029550" target="_blank">3315029550</a>, clock-base=(uint)3926529534,<br>
seqnum-base=(uint)45576&#39; ! gstrtpjitterbuffer drop-on-latency=true<br>
latency=500  ! rtph264depay ! tee name=videosrc \<br>
videosrc. ! queue ! ffdec_h264 ! ffmpegcolorspace ! ximagesink sync=false \<br>
videosrc. ! queue ! avimux ! filesink location=video.avi<br>
<br>
Unfortunately that doesn&#39;t work, doesn&#39;t throw any errors, but it doesn&#39;t<br>
bring up the video window nor does it try to write a file. If I take out the<br>
last line (the tee for printing out the file), it does bring up the video<br>
window. If I take out the second to last line (the tee for displaying the<br>
window) it creates the file, but it&#39;s zero bytes in size.<br>
<br>
My scripts do depend on the elements rtph264pay and rtph264depay which are<br>
poorly documented. I thought that perhaps the output of rtph264depay doesn&#39;t<br>
output an h264 format avimux likes. So I ran this script:<br>
gst-launch-0.10 v4l2src ! queue ! &#39;video/x-raw-yuv,width=640,height=480&#39; !<br>
x264enc bitrate=500 speed-preset=superfast tune=zerolatency ! rtph264pay !<br>
rtph264depay ! avimux ! filesink location=video.avi<br>
<br>
Which doesn&#39;t work, it only writes a file of zero bytes large, but if I took<br>
out the &quot;rtph264pay ! rtph264depay !&quot; part, it works fine. But what&#39;s more?<br>
If I add &quot;ffdec_h264 ! ffmpegcolorspace !&quot; between rtph264depay and avimux<br>
it does write a file (albeit a very large file).<br>
<br>
But then if I try to run this script as the receive script (just to try to<br>
write a file):<br>
gst-launch-0.10 udpsrc multicast-group=224.1.1.1 auto-multicast=true<br>
port=5010 caps=&#39;application/x-rtp, media=(string)video,<br>
clock-rate=(int)90000, encoding-name=(string)H264,<br>
sprop-parameter-sets=(string)\&quot;Z0KAHukBQHpCAAAH0AAB1MAIAA\\=\\=\\,aM48gAA\\=\&quot;,<br>
payload=(int)96, ssrc=(uint)<a href="tel:3315029550" value="+13315029550" target="_blank">3315029550</a>, clock-base=(uint)3926529534,<br>
seqnum-base=(uint)45576&#39; ! gstrtpjitterbuffer drop-on-latency=true<br>
latency=500  ! rtph264depay ! ffdec_h264 ! ffmpegcolorspace ! tee<br>
name=videosrc \<br>
videosrc. ! queue ! avimux ! filesink location=video.avi<br>
<br>
It does not work. So what is the deal here? Is there any way to write video<br>
from a h264 stream?<br>
<br>
--<br>
View this message in context: <a href="http://gstreamer-devel.966125.n4.nabble.com/How-to-save-incoming-h264-stream-without-re-encoding-tp1559487p4633660.html" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/How-to-save-incoming-h264-stream-without-re-encoding-tp1559487p4633660.html</a><br>



Sent from the GStreamer-devel mailing list archive at Nabble.com.<br>
_______________________________________________<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" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
_______________________________________________<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" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div></div></div><br>
<br>_______________________________________________<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" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br></blockquote></div><br><br clear="all"><br></div></div><span class="HOEnZb"><font color="#888888">-- <br><div><b>W.A. Garrett Weaver </b></div>
<div><a href="mailto:weaverg@email.arizona.edu" target="_blank">weaverg@email.arizona.edu</a></div><br>
</font></span></blockquote></div><br><br clear="all"><br>-- <br><div><b>W.A. Garrett Weaver </b></div>
<div><a href="mailto:weaverg@email.arizona.edu" target="_blank">weaverg@email.arizona.edu</a></div><br>