Android : Streaming on RTP from MAC to Android device

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

Android : Streaming on RTP from MAC to Android device

gdevel24
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: Android : Streaming on RTP from MAC to Android device

gdevel24
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: Android : Streaming on RTP from MAC to Android device

Hyunjun Ko
In reply to this post by gdevel24
> Also tried streaming from MAC using this command (ip address below is of my Android phone)
> gst-launch-1.0 -v filesrc location=/Users/.../test.mp4 ! h264parse ! rtph264pay ! udpsink host=10.0.0.5 port=5000

You should use qtdemux and probably config-interval property on h264parse like below
gst-launch-1.0 -v filesrc location=/Users/.../test.mp4 ! qtdemux ! h264parse config-interval=-1 ! rtph264pay ! udpsink host=10.0.0.5 port=5000

And also I recommand you would use rtpjitterbuffer between udpsrc and rtpdepay on client side.

BTW, I doubt if it's normal h264-payed rtp packet from your camera.
I'm not sure.
Reply | Threaded
Open this post in threaded view
|

Re: Android : Streaming on RTP from MAC to Android device

gdevel24
CONTENTS DELETED
The author has deleted this message.