|
ok so had a breakthrough,
managed to stream with the following pipelines:
receiver:
gst-launch-1.0 -v udpsrc caps = 'application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, sprop-parameter-sets=(string)"J0LgHqkYFAX/LgDUGAQa2wrXvfAQ\,KN4JyA\=\=", payload=(int)96, ssrc=(uint)743350251, timestamp-offset=(uint)1181281263, seqnum-offset=(uint)808' ! application/x-rtp ! rtph264depay ! avdec_h264 ! videoconvert ! autovideosink
sender:
gst-launch-1.0 -v filesrc location = /home/michael/Downloads/bbb_h264.mp4 ! qtdemux ! rtph264pay ! udpsink
now i moved the receiver pipeline as part of android-launch-remote app examole by sebastian droge and trying to stream to it from a linux machine.
the caps are from the sender output when starting the pipeline and the stream starts to play for a glimpse and then the app crashes.
any idea what am i doing wrong?
thanks
|