Hi George,<br>
<br>
Thx for your opinion. With the bug fix coming from cvs, I finally can record the stream into a file<br>
The previous issue is caused by the udpsrc cannot know the duration of
packet and amrdepayload doesnt calculate it as well. The duration is
important for the mux in order to reconstruct a file<br>
<br>
However, now, I got another problem in synchronization with video and audio(video too fast)<br>
<br>
Here is my pipeline for recording:<br>
<br>
gst-launch -m ffmux_3gp name=mux ! filesink location=/home/video/receive.3gp \<br>
{ udpsrc num-buffers=500 port=11002 name=audioudp
caps=&quot;application/x-rtp, media=(string)audio, payload=(int)98,
clock-rate=(int)8000, encoding-name=(string)AMR,
encoding-params=(string)1, octet-align=(string)1&quot; ! rtpamrdepay
queue-delay=0 ! queue } ! mux.audio_0 \<br>
{ udpsrc num-buffers=500 port=11000 name=videoudp
caps=&quot;application/x-rtp, media=(string)video, payload=(int)34,
clock-rate=(int)90000, encoding-name=(string)H263&quot; ! gstrtpjitterbuffer
! rtph263depay queue-delay=0 ! ffdec_h263 ! ffenc_h263 bitrate=45000
rtp-payload-size=500 gop-size=3 me-method=4 !queue } ! mux.video_0 <br>
<br>
I&#39;ve also try to add jitter buffer around both amr and h263 but still no successful<br>
As you said that you&#39;ve done it before, any idea on how to synchronize the video and audio in a recorded file?<br><br><div><span class="gmail_quote">On 9/19/07, <b class="gmail_sendername">George Beasley</b> &lt;<a href="mailto:george.beasley@d2see.com">
george.beasley@d2see.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">I don&#39;t think your issue is with your pipeline, I think it&#39;s with the
<br>way you terminate the stream. I&#39;ve been recording from a rtp streams<br>(h263 and amr) and I found that you cannot simply Ctrl-C to stop<br>to-command-line streaming as the muxer needs to close down gracefully<br>
(essentially it needs to write a table of contents in the file) and<br>that&#39;s why the file created doesn&#39;t play back. To test this add the<br>num-buffers=50 property to the udpsrc; after receiving 50 buffers it<br>
will send an EOS message through the pipeline and close it down<br>gracefully.<br><br>I have had problems with the rtpamrdepay however the issues I had don&#39;t<br>seem to be related to yours. My issues were that it would perpetually
<br>fail to recognise that I had provided it with a clock rate - however<br>this has now been fixed in the version available from cvs.<br><br><br>-----Original Message-----<br>From: <a href="mailto:gstreamer-devel-bounces@lists.sourceforge.net">
gstreamer-devel-bounces@lists.sourceforge.net</a><br>[mailto:<a href="mailto:gstreamer-devel-bounces@lists.sourceforge.net">gstreamer-devel-bounces@lists.sourceforge.net</a>] On Behalf Of<br>Terry Leung<br>Sent: Tuesday, 18 September 2007 09:57
<br>To: <a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>Subject: Re: [gst-devel] recording a file from stream<br><br>Hi all,<br><br>I discover that even i do it without udpsink and udpsrc, it still
<br>doesnt work, I suspect this is a bug...<br><br>The pipeline i use this time is:<br>gst-launch -v ffmux_3gp name=mux ! filesink<br>location=/home/video/jill3.3gp \<br>{filesrc location=/home/video/jill.3gp ! qtdemux name=demuxer2 !
<br>rtpamrpay ! rtpamrdepay queue-delay=0 ! queue }! mux.audio_0<br><br>without using rtpamrpay and rtpamrdepay, this pipeline work perfectly<br>after adding this, the output file cannot be demux<br><br>when i try to open the output file to demux and strema it like before,
<br>it shows that:<br>Setting pipeline to PAUSED ...<br>Pipeline is PREROLLING ...<br>ERROR: from element /pipeline0/demuxer: This file contains no playable<br>streams.<br>Additional debug info:<br>qtdemux.c(1444): gst_qtdemux_loop (): /pipeline0/demuxer:
<br>no known streams found<br>ERROR: pipeline doesn&#39;t want to preroll.<br>Setting pipeline to NULL ...<br>FREEING pipeline ...<br><br>The pipeline I use to stream is :<br>gst-launch -v filesrc location=/home/video/jill3.3gp ! qtdemux
<br>name=demuxer \<br>demuxer.!queue! rtpamrpay pt=98 ! udpsink host=<a href="http://172.20.122.9">172.20.122.9</a> port=11002<br><br>anyone here has tried to use rtpamrdepay with success?<br><br><br>On 9/17/07, Terry Leung &lt;
<a href="mailto:terry83@gmail.com">terry83@gmail.com</a>&gt; wrote:<br>&gt; Hi all,<br>&gt;<br>&gt; I am writing a program to record rtp stream into a 3gp file(currently<br>only amr)<br>&gt; I try to build a pipeline like the following:
<br>&gt;<br>&gt; gst-launch ffmux_3gp name=mux ! filesink<br>&gt; location=/home/video/receive.3gp name=file \<br>&gt; {udpsrc port=11002 name=audioudp \<br>&gt; caps=&quot;application/x-rtp, media=audio, payload=96, clock-rate=8000,
<br>&gt; encoding-name=AMR, ssrc=111111002 &quot;\<br>&gt;&nbsp;&nbsp;! rtpamrdepay ! queue } mux.audio_0<br>&gt;<br>&gt; After i generate stream from another source, it shows that<br>&gt;<br>&gt; Setting pipeline to PAUSED ...<br>
&gt; Pipeline is live and does not need PREROLL ...<br>&gt; Setting pipeline to PLAYING ...<br>&gt; New clock: GstSystemClock<br>&gt; ERROR: from element /pipeline0/audioudp: Internal data flow error.<br>&gt; Additional debug info:
<br>&gt; gstbasesrc.c(1816): gst_base_src_loop (): /pipeline0/audioudp:<br>&gt; streaming task paused, reason not-negotiated (-4)<br>&gt; Execution ended after 12698510000 ns.<br>&gt; Setting pipeline to PAUSED ...<br>&gt; Setting pipeline to READY ...
<br>&gt; Setting pipeline to NULL ...<br>&gt; FREEING pipeline ...<br>&gt;<br>&gt; anyone got idea on how to make it work?<br>&gt;<br><br>------------------------------------------------------------------------<br>-<br>This 
SF.net email is sponsored by: Microsoft<br>Defy all challenges. Microsoft(R) Visual Studio 2005.<br><a href="http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/">http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
</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">
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>This e-mail message (including any attachment) is confidential. If you have received this email in error please notify the sender immediately and delete this email from your system without copying or disseminating it or placing any reliance upon its contents. Any opinions expressed in this email (including attachments) are those of the author only.&nbsp;&nbsp;This message (including any attachments) does not create any legally binding rights or obligations. D2see Limited is a company registered in England and Wales no. 5836806. Registered Office: 10 Barley Mow Passage, London W4 4PH, UK. VAT registered, no. 888 1076 85.&nbsp;&nbsp;Tel +44 20 8819 5710
<br><br>-------------------------------------------------------------------------<br>This SF.net email is sponsored by: Microsoft<br>Defy all challenges. Microsoft(R) Visual Studio 2005.<br><a href="http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/">
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/</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">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br></blockquote></div><br>