how to receive the RTSP stream using gstreamer

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

how to receive the RTSP stream using gstreamer

anil v
Hi All,
 
   I want to receive the rtsp stream usig gstreamer's gst-launch. could you please tell me how can I receive the RTSP stream ? I am using RTSP server as Live555 server.


Thanks,
Anil.V

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: how to receive the RTSP stream using gstreamer

Kapil Agrawal
Anil use rtspsrc element to receive.

so something like,  
gst-launch-0.10 -v rtspsrc location=<sourcestream url> ! decodebin !
xvimagesink


-kapil

On Sat, Dec 5, 2009 at 11:22 AM, anil v <[hidden email]> wrote:
Hi All,
 
   I want to receive the rtsp stream usig gstreamer's gst-launch. could you please tell me how can I receive the RTSP stream ? I am using RTSP server as Live555 server.


Thanks,
Anil.V

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel




--
http://www.linkedin.com/in/kapilagrawal

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: how to receive the RTSP stream using gstreamer

Thiago Sousa Santos-2


On Sat, Dec 5, 2009 at 4:14 AM, Kapil Agrawal <[hidden email]> wrote:
Anil use rtspsrc element to receive.

so something like,  
gst-launch-0.10 -v rtspsrc location=<sourcestream url> ! decodebin !
xvimagesink

You can use playbin2 directly, like:

gst-launch playbin2 uri=rtsp://yoururl
 


-kapil

On Sat, Dec 5, 2009 at 11:22 AM, anil v <[hidden email]> wrote:
Hi All,
 
   I want to receive the rtsp stream usig gstreamer's gst-launch. could you please tell me how can I receive the RTSP stream ? I am using RTSP server as Live555 server.


Thanks,
Anil.V

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel




--
http://www.linkedin.com/in/kapilagrawal

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel




--
Thiago Sousa Santos

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: how to receive the RTSP stream using gstreamer

anil v
In reply to this post by anil v
Hi  thiago,
   I have tried as  you mentioned below but still I am unable to see the video. Here I have pasted the log.

$ gst-launch playbin2 uri=rtsp://172.22.22.116:554/video.mpg
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock


The same url I have tried using the vlc playing properly.  I have tried with local file using gst-launch which is playing properly.

Thanks,
Anil.V


Message: 3
Date: Sat, 5 Dec 2009 19:34:00 -0200
From: "[hidden email]" <[hidden email]>
Subject: Re: [gst-devel] how to receive the RTSP stream using
       gstreamer
To: Discussion of the development of GStreamer
       <[hidden email]>
Message-ID:
       <[hidden email]
>
Content-Type: text/plain; charset="iso-8859-1"

On Sat, Dec 5, 2009 at 4:14 AM, Kapil Agrawal <[hidden email]> wrote:

> Anil use rtspsrc element to receive.
>
> so something like,
> gst-launch-0.10 -v rtspsrc location=<sourcestream url> ! decodebin ! xvimagesink
>
>

You can use playbin2 directly, like:

gst-launch playbin2 uri=rtsp://yoururl


>
>
> -kapil
>
> On Sat, Dec 5, 2009 at 11:22 AM, anil v <[hidden email]>wrote:
>
>> Hi All,
>>
>>    I want to receive the rtsp stream usig gstreamer's gst-launch. could
>> you please tell me how can I receive the RTSP stream ? I am using RTSP
>> server as Live555 server.
>>
>>
>> Thanks,
>> Anil.V
>>

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: how to receive the RTSP stream using gstreamer

Thiago Sousa Santos-2


On Sun, Dec 6, 2009 at 1:50 AM, anil v <[hidden email]> wrote:
Hi  thiago,
   I have tried as  you mentioned below but still I am unable to see the video. Here I have pasted the log.

$ gst-launch playbin2 uri=rtsp://172.22.22.116:554/video.mpg
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock


The same url I have tried using the vlc playing properly.  I have tried with local file using gst-launch which is playing properly.

File a bug about it at bugzilla.gnome.org and, if possible, provide us with a way to reproduce the problem and/or debug logs of the problem.
 

Thanks,
Anil.V


Message: 3
Date: Sat, 5 Dec 2009 19:34:00 -0200
From: "[hidden email]" <[hidden email]>
Subject: Re: [gst-devel] how to receive the RTSP stream using
       gstreamer
To: Discussion of the development of GStreamer

       <[hidden email]>
Message-ID:
       <[hidden email]
>
Content-Type: text/plain; charset="iso-8859-1"


On Sat, Dec 5, 2009 at 4:14 AM, Kapil Agrawal <[hidden email]> wrote:

> Anil use rtspsrc element to receive.
>
> so something like,
> gst-launch-0.10 -v rtspsrc location=<sourcestream url> ! decodebin ! xvimagesink
>
>

You can use playbin2 directly, like:

gst-launch playbin2 uri=rtsp://yoururl


>
>
> -kapil
>
> On Sat, Dec 5, 2009 at 11:22 AM, anil v <[hidden email]>wrote:
>
>> Hi All,
>>
>>    I want to receive the rtsp stream usig gstreamer's gst-launch. could
>> you please tell me how can I receive the RTSP stream ? I am using RTSP
>> server as Live555 server.
>>
>>
>> Thanks,
>> Anil.V
>>



--
Thiago Sousa Santos

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel