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