<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><div>Keep in touch with list, do not forget to post your rtsp server bin enhancement on bugzilla !<br>Such an element could be very interesting, as an alternative to DSS.<br><br>Aurelien<br></div><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><br><div style="font-family: arial,helvetica,sans-serif; font-size: 13px;">----- Message d'origine ----<br>De : Rémi BUISSON &lt;remi.buisson@viotech.net&gt;<br>À : Discussion of the development of GStreamer &lt;gstreamer-devel@lists.sourceforge.net&gt;<br>Envoyé le : Vendredi, 8 Août 2008, 15h28mn 05s<br>Objet&nbsp;: Re: [gst-devel] Re :  Re :  Re :  Help with RTP<br><br>OK I understand now. I have all in mind to do a good job.<br><br>Rémi<br><br>Aurelien Grimaud wrote:<br>&gt; There are two "rtpbin" elements
 availables for gstreamer<br>&gt; rtpbin from gst-plugin-farsight and gstrtpbin from gst-plugins-bad.<br>&gt; I think Remi was using farsight's and Thomas gst-plugin-bad one.<br>&gt; I prefer the last one (gstrtpbin), it handles multiple rtp sessions, <br>&gt; with AV sync using rtcp. jitterbuffer works better and RTCP is generated.<br>&gt;<br>&gt; Remi, keep in mind that RTP is only a transport. You need some <br>&gt; negotiation to be able to display a stream. RTP, for many case, is not <br>&gt; enough. You need clockrate, frame size, frame rate of the stream and <br>&gt; of course which codec to use.<br>&gt; These are the informations given by the sdp file, which are exchanged <br>&gt; via the stream negotiation protocol RTSP.<br>&gt; So RTP handling is not enough if you want your client to be generic. <br>&gt; You also need a codec negotiation for client to know what is sent and&nbsp; <br>&gt; how to handle it.<br>&gt;<br>&gt; &gt; Do you mean I have
 to write a plugin which is like this pipeline ?<br>&gt; &gt; src -&gt; demuxer -&gt; streamer_transformer -&gt; encoder -&gt; payloader -&gt; rtp<br>&gt;<br>&gt; Actually, just the src/demuxer part of this pipeline is missing in <br>&gt; gstreamer.<br>&gt; It could be a rtspserversrc :<br>&gt; It would act as a udp/tcp src, handling rtsp requests.<br>&gt; DESCRIBE requests may be answered via local sdp files (as in QTSS) or <br>&gt; full filled by a signal<br>&gt; SETUP requests create udpsink elements, and new sometimes sink pad&nbsp; to <br>&gt; link to rtp.<br>&gt; PLAY and PAUSE requests will be signaled to application.<br>&gt; TEARDOWN will clean up and send eos.<br>&gt;<br>&gt; In fact rtspserversrc does not need to be a source. It can be linked <br>&gt; to a tcp/udp source feeding it with rtsp.<br>&gt;<br>&gt; udpsrc (rtsp) --&gt;&nbsp; |----------------| &lt;--- &lt;SETUP pad&gt; -- &lt;-- <br>&gt; payloader &lt;-- encoder &lt;--
 stream_transformer &lt;-- stream source<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | rtspserverbin |<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |----------------| --&gt; |-----------|<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  | <br>&gt; gstrtpbin |--&gt; udpsink (rtp)<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  udpsrc (rtcp) --&gt; |-----------|--&gt; <br>&gt; udpsink (rtcp)<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
 <br>&gt;<br>&gt; Aurelien<br>&gt;<br>&gt; ----- Message d'origine ----<br>&gt; De : Thomas Winkler &lt;<a ymailto="mailto:wi-tom@gmx.de" href="mailto:wi-tom@gmx.de">wi-tom@gmx.de</a>&gt;<br>&gt; À : <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>&gt; Envoyé le : Vendredi, 8 Août 2008, 12h05mn 02s<br>&gt; Objet : Re: [gst-devel] Re : Re : Help with RTP<br>&gt;<br>&gt; gst-launch rtpbin localport=5000 ! rtph264depay ! decodebin ! xvimagesink<br>&gt;<br>&gt; This pipeline is incomplete. Your Sender pipeline uses udpsink, so you <br>&gt; have to use udpsrc on your Receiver. If you want to use rtpbin on your <br>&gt; Receiver, you have to add the udpsrc element and connet it with the <br>&gt; rtpbin element.<br>&gt;<br>&gt; Example:<br>&gt;<br>&gt;<br>&gt; Sender:<br>&gt; =========<br>&gt;
 VCAPS="video/x-raw-yuv,width=352,height=288,framerate=15/1"<br>&gt; RHOST=192.168.0.5<br>&gt;<br>&gt; gst-launch-0.10 -v gstrtpbin name=rtpbin v4l2src ! $VCAPS \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! ffmpegcolorspace \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! ffenc_h263 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! video/x-h263 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtph263pay \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtp \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtpbin.send_rtp_sink_0 rtpbin.send_rtp_src_0 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtp
 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! udpsink host=$RHOST port=5000 sync=false <br>&gt; async=false rtpbin.send_rtcp_src0 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! udpsink host=$RHOST port=5001 sync=false <br>&gt; async=false udpsrc port=5005 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtcp \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtpbin.recv_rtcp_sink_0<br>&gt;<br>&gt;<br>&gt;<br>&gt; Receiver:<br>&gt; =========<br>&gt; VCAPS="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H263"<br>&gt; RHOST=192.168.0.5<br>&gt;<br>&gt; gst-launch-0.10 -v gstrtpbin name=rtpbin udpsrc caps=$VCAPS port=5000 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  !
 application/x-rtp \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtpbin.recv_rtp_sink_0 rtpbin. \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtp \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtph263depay \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! video/x-h263 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! decodebin \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! ffmpegcolorspace \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! xvimagesink sync=false async=false udpsrc <br>&gt; port=5001 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtcp
 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! rtpbin.recv_rtcp_sink_0 rtpbin.send_rtcp_src_0 \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! application/x-rtcp \<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ! udpsink host=$RHOST port=5005 sync=false <br>&gt; async=false<br>&gt;<br>&gt;<br>&gt;<br>&gt; -------- Original-Nachricht --------<br>&gt; &gt; Datum: Fri, 08 Aug 2008 09:09:00 +0200<br>&gt; &gt; Von: "Rémi BUISSON" &lt;<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a>&gt;&gt;<br>&gt; &gt; An: Discussion of the development of GStreamer <br>&gt; &lt;<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; Betreff: Re: [gst-devel] Re :&nbsp; Re :&nbsp; Help with RTP<br>&gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; Aurelien Grimaud wrote:<br>&gt; &gt; &gt; Darwin is a streaming server. It is fed with RTP Audio/Video streams<br>&gt; &gt; &gt; and is able to dispatch them to rtsp clients.<br>&gt; &gt; &gt; So yes, you can stream from dvb source to Darwin, and then use an <br>&gt; rtsp<br>&gt; &gt; &gt; client to ask Darwin for the stream.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; To interact with Darwin, you have to write your own darwin plugin.<br>&gt; &gt; &gt; Have a look at the QTSS documentation<br>&gt; &gt; &gt; <a href="http://www.apple.com/quicktime/streamingserver/"
 target="_blank">http://www.apple.com/quicktime/streamingserver/</a><br>&gt; &gt; &gt;<br>&gt; &gt; &gt; A better solution would be to write a gstreamer plugin acting as a<br>&gt; &gt; &gt; RTSP server ...<br>&gt; &gt; Do you mean I have to write a plugin which is like this pipeline ?<br>&gt; &gt; src -&gt; demuxer -&gt; streamer_transformer -&gt; encoder -&gt; payloader -&gt; rtp<br>&gt; &gt;<br>&gt; &gt; If this is this, that was my original idea but I have some trouble in<br>&gt; &gt; using rtpbin.<br>&gt; &gt; I send a file with this :<br>&gt; &gt; gst-launch filesrc location=../partage/Videos/superman_originale.avi !<br>&gt; &gt; decodebin ! x264enc ! rtph264pay ! rtpbin localport=5001<br>&gt; &gt; destinations=192.168.1.2:5000<br>&gt; &gt;<br>&gt; &gt; I receive it with this :<br>&gt; &gt; gst-launch udpsrc port=5000 ! rtph264depay ! decodebin ! xvimagesink<br>&gt; &gt;<br>&gt; &gt; And I don't know why I have to use the last pipeline instead of
 :<br>&gt; &gt; gst-launch rtpbin localport=5000 ! rtph264depay ! decodebin ! <br>&gt; xvimagesink<br>&gt; &gt;<br>&gt; &gt; to make it work.<br>&gt; &gt;<br>&gt; &gt; Next, I don't know why streams are not compatible because I can't read<br>&gt; &gt; the stream I send with VLC or Totem (which use gstreamer).<br>&gt; &gt;<br>&gt; &gt; Rémi<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Aurelien<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; ----- Message d'origine ----<br>&gt; &gt; &gt; De : Rémi BUISSON &lt;<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a>&gt;&gt;<br>&gt; &gt; &gt; À : Discussion of the development of GStreamer<br>&gt; &gt; &gt; &lt;<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; Envoyé le : Jeudi, 7 Août 2008, 17h14mn 30s<br>&gt; &gt; &gt; Objet : Re: [gst-devel] Re : Help with RTP<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Thanks.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; With this server, can I stream from dvb source for instance ?<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; In fact, I am in an internship and the program I have to write must<br>&gt; &gt; &gt; exchange SIP message for the commands. So my question is: can I <br>&gt; interact<br>&gt; &gt; &gt; easily with Darwin from my C program ? with a plugin ?<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Thanks again !<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Rémi<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Aurelien Grimaud
 wrote:<br>&gt; &gt; &gt; &gt; Hi, I think you need a server here to handle the negotiations (sdp<br>&gt; &gt; &gt; &gt; exchange).<br>&gt; &gt; &gt; &gt; Then, you can use RTCP sent by client to detect network congestion.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Darwin streaming server is a rtsp server and may be a good start to<br>&gt; &gt; &gt; &gt; handle rtsp.<br>&gt; &gt; &gt; &gt; It also supports easy plugin writting, in which you can alter your<br>&gt; &gt; &gt; &gt; stream the way you want, without re-writting a rtsp stack from<br>&gt; &gt; scratch.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Aurelien<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; ----- Message d'origine ----<br>&gt; &gt; &gt; &gt; De : Rémi BUISSON &lt;<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:remi.buisson@viotech.net"
 href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a> &lt;mailto:<a ymailto="mailto:remi.buisson@viotech.net" href="mailto:remi.buisson@viotech.net">remi.buisson@viotech.net</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; À : Daiane Angolini &lt;<a ymailto="mailto:daiane.angolini@freescale.com" href="mailto:daiane.angolini@freescale.com">daiane.angolini@freescale.com</a> <br>&gt; &lt;mailto:<a ymailto="mailto:daiane.angolini@freescale.com" href="mailto:daiane.angolini@freescale.com">daiane.angolini@freescale.com</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:daiane.angolini@freescale.com" href="mailto:daiane.angolini@freescale.com">daiane.angolini@freescale.com</a> <br>&gt; &lt;mailto:<a ymailto="mailto:daiane.angolini@freescale.com"
 href="mailto:daiane.angolini@freescale.com">daiane.angolini@freescale.com</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; Cc : Discussion of the development of GStreamer<br>&gt; &gt; &gt; &gt; &lt;<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; Envoyé le : Jeudi, 7 Août 2008, 8h37mn 59s<br>&gt; &gt; &gt;
 &gt; Objet : Re: [gst-devel] Help with RTP<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Hi and thanks for your reply !<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; OK I will try today and I will tell you if it works for me.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; My goal is to write a streaming server which can transcode, <br>&gt; transrate,<br>&gt; &gt; &gt; &gt; ... a stream and using a file for clients may be some kind of a<br>&gt; &gt; &gt; &gt; do-it-yourself solution.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; For instance, the client send a message to the server for <br>&gt; starting the<br>&gt; &gt; &gt; &gt; streaming of a file. Next, imagine the network is overloaded. Then,<br>&gt; &gt; the<br>&gt; &gt; &gt; &gt; client will ask to the server to decrease the bitrate of the stream.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; The client may be VLC, MPlayer, ...<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Have you any idea to do it
 ?<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; I think it's possible because the streams are standardized.<br>&gt; &gt; &gt; &gt; Moreover, I tried to read a video streamed by flumotion over <br>&gt; HTTP and<br>&gt; &gt; it<br>&gt; &gt; &gt; &gt; works perfectly with VLC.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Thanks again.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Daiane Angolini wrote:<br>&gt; &gt; &gt; &gt; &gt; Hello Remi!<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; If you want to see streaming using VLC you can use a SDP file.<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Try this:<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; *v=0*<br>&gt; &gt; &gt; &gt; &gt; *o=- 37 614155991 IN IP4 127.0.0.0*<br>&gt; &gt; &gt; &gt; &gt; *s=QuickTime*<br>&gt; &gt; &gt; &gt; &gt; *t=0 0*<br>&gt; &gt; &gt; &gt; &gt; *a=range:npt=now-*<br>&gt; &gt; &gt; &gt; &gt; *m=audio 5432 RTP/AVP
 0*<br>&gt; &gt; &gt; &gt; &gt; *c=IN IP4 10.29.241.6*<br>&gt; &gt; &gt; &gt; &gt; *b=AS:63*<br>&gt; &gt; &gt; &gt; &gt; *m=video 5434 RTP/AVP 96*<br>&gt; &gt; &gt; &gt; &gt; *c=IN IP4 10.29.241.6*<br>&gt; &gt; &gt; &gt; &gt; *a=rtpmap:96 H263-2000/90000*<br>&gt; &gt; &gt; &gt; &gt; *a=fmtp:96&nbsp; *<br>&gt; &gt; &gt; &gt; &gt; *a=cliprect:0,0,144,176*<br>&gt; &gt; &gt; &gt; &gt; *a=framesize:96 176-144*<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; In this file you have both audio and video.<br>&gt; &gt; &gt; &gt; &gt; But if you need a simple one, you can try this:<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; *v=0*<br>&gt; &gt; &gt; &gt; &gt; *m=video 5434 RTP/AVP 96*<br>&gt; &gt; &gt; &gt; &gt; *c=IN IP4 10.29.240.186*<br>&gt; &gt; &gt; &gt; &gt; *a=rtpmap:96 MP4V-ES/90000&nbsp; *<br>&gt; &gt; &gt; &gt; &gt; *a=fmtp:96<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt;
 config=000001b002000001b59113000001000000012000c488800f50584121443f;profile-level-id=2*<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; The *config* and *profile-level-id* you can get from the return<br>&gt; &gt; value<br>&gt; &gt; &gt; &gt; &gt; of *gst-lauch -v* command. In the caps property.<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Ah!<br>&gt; &gt; &gt; &gt; &gt; To use VLC with SDP file use:<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; vlc -vvv file.sdp<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; I hope it works<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; Daiane<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; On Wed, 2008-08-06 at 16:21 +0200, Rémi BUISSON wrote:<br>&gt; &gt; &gt; &gt; &gt;&gt; Hi everyone,<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; I
 have some troubles streaming video file over the network.<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; First of all, I tired this :<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; server:<br>&gt; &gt; &gt; &gt; &gt;&gt; gst-launch filesrc<br>&gt; &gt; &gt; location=../partage/Videos/superman_originale.avi !<br>&gt; &gt; &gt; &gt; &gt;&gt; decodebin ! x264enc ! video/x-h264 ! rtph264pay pt=96 ! udpsink<br>&gt; &gt; &gt; &gt; &gt;&gt; host=192.168.1.2 port=5000 sync=false<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; client:<br>&gt; &gt; &gt; &gt; &gt;&gt; gst-launch udpsrc port=5000 ! rtph264depay&nbsp; ! decodebin !<br>&gt; &gt; xvimagesink<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; It works but I can't read it with vlc : vlc udp://@:5000 : is it<br>&gt; &gt; &gt; &gt; normal ?<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; Now I would like to do the same thing
 with an RTP pipeline :<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; server:<br>&gt; &gt; &gt; &gt; &gt;&gt; gst-launch filesrc<br>&gt; &gt; &gt; location=../partage/Videos/superman_originale.avi !<br>&gt; &gt; &gt; &gt; &gt;&gt; decodebin ! x264enc ! rtph264pay ! rtpbin localport=5001<br>&gt; &gt; &gt; &gt; &gt;&gt; destinations=127.0.0.1:5000<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; client:<br>&gt; &gt; &gt; &gt; &gt;&gt; gst-launch udpsrc port=5000 ! rtph264depay ! decodebin !<br>&gt; &gt; &gt; &gt; xvimagesink --&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; this works<br>&gt; &gt; &gt; &gt; &gt;&gt; gst-launch rtpbin localport=5000 ! rtph264depay ! decodebin !<br>&gt; &gt; &gt; &gt; &gt;&gt; xvimagesink --&gt; this doesn't work<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; How can I receive my stream ? with vlc ?<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; Thanks in advance
 !<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt; &gt;&gt; This SF.Net email is sponsored by the Moblin Your Move <br>&gt; Developer's<br>&gt; &gt; &gt; &gt; challenge<br>&gt; &gt; &gt; &gt; &gt;&gt; Build the coolest Linux based applications with Moblin SDK &amp; win<br>&gt; &gt; &gt; &gt; great prizes<br>&gt; &gt; &gt; &gt; &gt;&gt; Grand prize is a trip for two to an Open Source event anywhere in<br>&gt; &gt; &gt; &gt; the world<br>&gt; &gt; &gt; &gt; &gt;&gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/"
 target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/"
 target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/"
 target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; _______________________________________________<br>&gt; &gt; &gt; &gt; &gt;&gt; gstreamer-devel mailing list<br>&gt; &gt;
 &gt; &gt; &gt;&gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a
 ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; &gt;&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt; &gt; &gt; &gt; &gt;&gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt; This SF.Net email is sponsored by the Moblin Your Move Developer's<br>&gt; &gt; &gt; &gt; challenge<br>&gt; &gt; &gt; &gt; Build the coolest Linux based applications with Moblin SDK &amp; win <br>&gt; great<br>&gt; &gt; &gt; &gt; prizes<br>&gt; &gt; &gt; &gt; Grand prize is a trip for two to an Open Source event anywhere <br>&gt; in the<br>&gt; &gt; &gt; &gt; world<br>&gt; &gt; &gt; &gt; <a
 href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/"
 target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; &gt; gstreamer-devel mailing list<br>&gt; &gt; &gt; &gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a
 ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;&gt;<br>&gt; &gt; &gt; &gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; ------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt; Envoyé avec Yahoo! Mail<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; &lt;<a href="http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html" target="_blank">http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html</a>&gt;.<br>&gt; &gt; &gt; &gt; Une boite mail plus intelligente.<br>&gt; &gt; &gt; &gt;<br>&gt; &gt;
 ------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt; This SF.Net email is sponsored by the Moblin Your Move Developer's<br>&gt; &gt; &gt; challenge<br>&gt; &gt; &gt; &gt; Build the coolest Linux based applications with Moblin SDK &amp; win<br>&gt; &gt; &gt; great prizes<br>&gt; &gt; &gt; &gt; Grand prize is a trip for two to an Open Source event anywhere in<br>&gt; &gt; &gt; the world<br>&gt; &gt; &gt; &gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a
 href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; ------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; &gt; gstreamer-devel mailing list<br>&gt; &gt; &gt; &gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a
 ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; &gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; &gt; This SF.Net email is sponsored by the Moblin Your Move Developer's<br>&gt; &gt; &gt; challenge<br>&gt; &gt; &gt; Build the coolest Linux based applications with Moblin SDK &amp; win <br>&gt; great<br>&gt; &gt; &gt; prizes<br>&gt; &gt; &gt; Grand prize is a trip for two to an Open Source
 event anywhere in the<br>&gt; &gt; &gt; world<br>&gt; &gt; &gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;&gt;<br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; gstreamer-devel mailing list<br>&gt; &gt; &gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net"
 href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;&gt;<br>&gt; &gt; &gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt; &gt; &gt;<br>&gt; &gt; &gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; &gt; &gt; Envoyé avec Yahoo!
 Mail<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; &lt;<a href="http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html" target="_blank">http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html</a>&gt;.<br>&gt; &gt; &gt; Une boite mail plus intelligente.<br>&gt; &gt; &gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; &gt; This SF.Net email is sponsored by the Moblin Your Move Developer's<br>&gt; &gt; challenge<br>&gt; &gt; &gt; Build the coolest Linux based applications with Moblin SDK &amp; win great<br>&gt; &gt; prizes<br>&gt; &gt; &gt; Grand prize is a trip for two to an Open Source event anywhere in the<br>&gt; &gt;
 world<br>&gt; &gt; &gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt; &gt; <br>&gt; ------------------------------------------------------------------------<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; gstreamer-devel mailing list<br>&gt; &gt; &gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; &gt; <a
 href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt; &gt; &gt; <br>&gt; &gt;<br>&gt; &gt; <br>&gt; -------------------------------------------------------------------------<br>&gt; &gt; This SF.Net email is sponsored by the Moblin Your Move Developer's<br>&gt; &gt; challenge<br>&gt; &gt; Build the coolest Linux based applications with Moblin SDK &amp; win great<br>&gt; &gt; prizes<br>&gt; &gt; Grand prize is a trip for two to an Open Source event anywhere in the<br>&gt; &gt; world<br>&gt; &gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; &gt;
 _______________________________________________<br>&gt; &gt; gstreamer-devel mailing list<br>&gt; &gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt; &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; &gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;<br>&gt; -- <br>&gt; GMX startet ShortView.de. Hier findest Du Leute mit Deinen Interessen!<br>&gt; Jetzt dabei sein: <br>&gt; <a href="http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx" target="_blank">http://www.shortview.de/wasistshortview.php?mc=sv_ext_mf@gmx</a><br>&gt;<br>&gt;
 -------------------------------------------------------------------------<br>&gt; This SF.Net email is sponsored by the Moblin Your Move Developer's <br>&gt; challenge<br>&gt; Build the coolest Linux based applications with Moblin SDK &amp; win great <br>&gt; prizes<br>&gt; Grand prize is a trip for two to an Open Source event anywhere in the <br>&gt; world<br>&gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a> <br>&gt; &lt;<a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a>&gt;<br>&gt; _______________________________________________<br>&gt; gstreamer-devel mailing list<br>&gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <br>&gt;
 &lt;mailto:<a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>&gt;<br>&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;<br>&gt; ------------------------------------------------------------------------<br>&gt; Envoyé avec Yahoo! Mail <br>&gt; &lt;<a href="http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html" target="_blank">http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html</a>&gt;.<br>&gt; Une boite mail plus intelligente.<br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt;
 -------------------------------------------------------------------------<br>&gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge<br>&gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes<br>&gt; Grand prize is a trip for two to an Open Source event anywhere in the world<br>&gt; <a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a><br>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>&gt; gstreamer-devel mailing list<br>&gt; <a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>&gt; <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel"
 target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>&gt;&nbsp;  <br><br>-------------------------------------------------------------------------<br>This SF.Net email is sponsored by the Moblin Your Move Developer's challenge<br>Build the coolest Linux based applications with Moblin SDK &amp; win great prizes<br>Grand prize is a trip for two to an Open Source event anywhere in the world<br><a href="http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/" target="_blank">http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/</a><br>_______________________________________________<br>gstreamer-devel mailing list<br><a ymailto="mailto:gstreamer-devel@lists.sourceforge.net" 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></div><br>


      <hr size="1"> 
Envoyé avec <a href="http://us.rd.yahoo.com/mailuk/taglines/isp/control/*http://us.rd.yahoo.com/evt=52423/*http://fr.docs.yahoo.com/mail/overview/index.html">Yahoo! Mail</a>.<br>Une boite mail plus intelligente. </a></body></html>