<br><br><div class="gmail_quote">On Mon, Jul 5, 2010 at 8:06 AM, Overkill <span dir="ltr">&lt;<a href="mailto:overkill.shining@tiscali.it">overkill.shining@tiscali.it</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

&gt; What pipeline is used?<br>
<br>
-------------------------------------------------<br>
To record the .avi file<br>
<br>
gst-launch -v my_embedded_v4lsrc ! \<br>
  my_embedded_264enc width=720 height=400 \<br>
    name=video \<br>
  alsasrc ! \<br>
  audio/x-raw-int,rate=16000,channels=2,width=16,depth=16,signed=true ! \<br>
  queue name=audio \<br>
  avimux name=mux ! \<br>
  filesink location=test.avi \<br>
  video.src ! mux.video_0 \<br>
<div class="im">  audio.src ! mux.audio_0<br>
<br></div></blockquote><div><br></div><div>You should be using the --eos-on-shutdown (or simply -e) here to allow the muxer to properly finish the file.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">
</div>-------------------------------------------------<br>
To made the mov with ffmux_mov,<br>
i made an avi_to_ff.sh<br>
Call avi_to_ff.sh &lt;avifile&gt;<br>
<br>
#!/bin/sh<br>
<br>
of=`ls &quot;$1&quot; | sed s/.avi/_ff.mov/`<br>
<br>
echo &quot;playing $1&quot;<br>
echo &quot;Making $of&quot;<br>
<br>
gst-launch -v filesrc blocksize=131250 location=$1 \<br>
  ! avidemux name=dmx \<br>
  ffmux_mov name=mux ! filesink location=&quot;$of&quot; \<br>
  dmx.video_00 ! queue ! mux.video_0 \<br>
  dmx.audio_00 ! queue ! mux.audio_0<br>
<br>
<br>
-------------------------------------------------<br>
To made the mov with qtmux,<br>
i made an avi_to_qt.sh<br>
Call avi_to_qt.sh &lt;avifile&gt;<br>
<br>
#!/bin/sh<br>
<br>
of=`ls &quot;$1&quot; | sed s/.avi/_qt.mov/`<br>
<br>
echo &quot;playing $1&quot;<br>
echo &quot;Making $of&quot;<br>
<br>
gst-launch -v filesrc blocksize=131250 location=$1 \<br>
  ! avidemux name=dmx \<br>
  qtmux name=mux ! filesink location=&quot;$of&quot; \<br>
  dmx.video_00 ! queue ! mux.video_00 \<br>
  dmx.audio_00 ! queue ! mux.audio_00<br>
<br>
<br>
I&#39;m using an embedded hardware, that&#39;s why I use my_embedded v4lsrc and 264enc.<br>
The simulation with PC using videotestsrc and x264enc is working fine.<br>
So I suppose some (missed?) information out of my encoder that ffmux_mov can<br>
rebuild while qtmov not. But it&#39;s only my humble opinion....<br></blockquote><div><br></div><div>You could check at the mp4 specs for the avcC atom syntax, that&#39;s where mp4mux puts the &#39;codec_data&#39; field from the caps. And then compare what your encoder produces with what x264enc does.</div>

<div><br></div><div>Otherwise you can open a bug in <a href="http://bugzilla.gnome.org">bugzilla.gnome.org</a> with the input from your hardware elements and describe this problem over there.</div><div><br></div><div>To get the input you can use gdppay element in something like:</div>

<div><br></div><div>gst-launch my_embedded_v4l2src num-buffers=50 ! my_embedded_264enc ! gdppay ! filesink location=input.gdp</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">


<br>
Thanks a lot<br>
<br>
***** By The Overkill !!! *****<br>
<div><div></div><div class="h5"><br>
------------------------------------------------------------------------------<br>
This SF.net email is sponsored by Sprint<br>
What will you do first with EVO, the first 4G phone?<br>
Visit <a href="http://sprint.com/first" target="_blank">sprint.com/first</a> -- <a href="http://p.sf.net/sfu/sprint-com-first" target="_blank">http://p.sf.net/sfu/sprint-com-first</a><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Thiago Sousa Santos<br>