streamed video in network is not played at client

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

streamed video in network is not played at client

saev
Hi,
I am trying to stream video in network using below command:
gst-launch videotestsrc ! gdppay ! queue ! udpsink  port=5554 host=localhost
for testing  purpose i have put the host as localhost.

On client side to play the streamed video( i want to play the send video here) I am running following command:
gst-launch  -v udpsrc port=5554  ! gdpdepay !  queue ! ffmpegcolorspace ! autovideosink

But I don't see any video played at client side . Can anyone help me whats the problem with above command?
Reply | Threaded
Open this post in threaded view
|

Re: streamed video in network is not played at client

Hamilton Vera
Are you  running the client and server in the same machine?

On Wed, Sep 28, 2011 at 8:06 AM, saev <[hidden email]> wrote:

> Hi,
> I am trying to stream video in network using below command:
> gst-launch videotestsrc ! gdppay ! queue ! udpsink  port=5554 host=localhost
> for testing  purpose i have put the host as localhost.
>
> On client side to play the streamed video( i want to play the send video
> here) I am running following command:
> gst-launch  -v udpsrc port=5554  ! gdpdepay !  queue ! ffmpegcolorspace !
> autovideosink
>
> But I don't see any video played at client side . Can anyone help me whats
> the problem with above command?
>
>
> --
> View this message in context: http://gstreamer-devel.966125.n4.nabble.com/streamed-video-in-network-is-not-played-at-client-tp3850726p3850726.html
> Sent from the GStreamer-devel mailing list archive at Nabble.com.
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
>



--
Hamilton Vera
int Administrator (char Network[],char ComputationalSystems[])
http://hvera.wordpress.com
_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: streamed video in network is not played at client

Ibra
In reply to this post by saev
Hi,
 
You need to add "multicast-group = localhost" to "udpsrc" and it should work.
 
Ibra

From: saev <[hidden email]>
To: [hidden email]
Sent: Wednesday, 28 September 2011, 12:06
Subject: streamed video in network is not played at client

Hi,
I am trying to stream video in network using below command:
gst-launch videotestsrc ! gdppay ! queue ! udpsink  port=5554 host=localhost
for testing  purpose i have put the host as localhost.

On client side to play the streamed video( i want to play the send video
here) I am running following command:
gst-launch  -v udpsrc port=5554  ! gdpdepay !  queue ! ffmpegcolorspace !
autovideosink

But I don't see any video played at client side . Can anyone help me whats
the problem with above command?


--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/streamed-video-in-network-is-not-played-at-client-tp3850726p3850726.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel



_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: streamed video in network is not played at client

Wim Taymans
In reply to this post by Hamilton Vera
On 09/28/2011 11:00 PM, Hamilton Vera wrote:
> Are you  running the client and server in the same machine?
>
> On Wed, Sep 28, 2011 at 8:06 AM, saev<[hidden email]>  wrote:
>> Hi,
>> I am trying to stream video in network using below command:
>> gst-launch videotestsrc ! gdppay ! queue ! udpsink  port=5554 host=localhost
>> for testing  purpose i have put the host as localhost.

You can't to do this, you will exceed the maximum frame size of UDP
(+-64K). Use RTP or something else to split the raw video frame in
smaller chunks before sending them over UDP.

Wim

>>
>> On client side to play the streamed video( i want to play the send video
>> here) I am running following command:
>> gst-launch  -v udpsrc port=5554  ! gdpdepay !  queue ! ffmpegcolorspace !
>> autovideosink
>>
>> But I don't see any video played at client side . Can anyone help me whats
>> the problem with above command?
>>
>>
>> --
>> View this message in context: http://gstreamer-devel.966125.n4.nabble.com/streamed-video-in-network-is-not-played-at-client-tp3850726p3850726.html
>> Sent from the GStreamer-devel mailing list archive at Nabble.com.
>> _______________________________________________
>> gstreamer-devel mailing list
>> [hidden email]
>> http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
>>
>
>
>

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: streamed video in network is not played at client

saev
This post was updated on .
In reply to this post by Hamilton Vera
@Hamilton Vera yes Currently I am running the client and server on the same machine for testing purpose.

@Ibra Adding multicast-group is also not helping. No video is shown at receiver side. I run the following command at receiver:
gst-launch  -v udpsrc port=5554  multicast-group="localhost" ! gdpdepay !  queue ! ffmpegcolorspace ! autovideosink


@wim I am new to GStreamer. can you plz tell me how to split the raw video frame in smaller chunks using RTP.