|
Hi,
I'm doing experiments on sending .264 packets via RTP over UDP.
i use the pipeline
gst-launch filesrc location=location.264 ! video/x-h264 ! rtph264pay pt=96 ! udpsink host=ip_address port=5000
In this pipeline after the packetising using rtp,the file size is reduced to 110KB or so..Each time the size of the stream generated is same irrespective of the file format(.264 or mp4 etc) and file size we are sending.
When i further packetise with UDP,the size is again reduced.
AT the receiver gst-launch udpsrc port=5000 ! application/x-rtp,media=video,payload=96 ! rtpdepayh264 ! filesink location=location.264
I tried the same with VLC by transmitting UDP packet,At the receiver i get the file properly using the same receiver pipeline.
please help me figure out the problem with rtp packetizing.
Thank you
|