Live udp stream recording in .mov format

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

Live udp stream recording in .mov format

ganeshbk
I have a live video stream using udp protocol and the decoding is done in h264 format i need to save this file  in .mov format as iPad cannot play the video in any other format than mp4 and .mov.
Need help on this.
Vnd
Reply | Threaded
Open this post in threaded view
|

Re: Live udp stream recording in .mov format

Vnd
Following pipelie might help you:

gst-launch-1.0 udpsrc port=8000 ! decodebin name=raw ! videoconvert ! x264enc ! h264parse ! qtmux name=mux ! filesink location=/root/test.mov raw. ! audioconvert ! voaacenc ! aacparse ! mux.

~Vinod
Reply | Threaded
Open this post in threaded view
|

Re: Live udp stream recording in .mov format

ganeshbk
Thank you Vinod