Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to save a RTSP video stream to MP4 file via gstreamer?

I need to get a video stream from my camera via RTSP and save it to a file. All of this needs to be done via gstreamer.

After some google searching, I tried the following:

gst-launch-1.0 rtspsrc location=rtsp://192.168.1.184/live2.sdp ! queue ! rtph264depay ! avdec_h264 ! mp4mux ! filesink location=result3.mp4

but it gives the error: "Erroneous pipeline: could not link avdec_h264-0 to mp4mux0"

gst-launch-1.0 rtspsrc location=rtsp://192.168.1.184/live2.sdp ! queue ! rtph264depay ! h264parse ! mp4mux ! filesink location=result3.mp4

It starts doing work, but the result file is not playable via VLC.

What is the right command to do? And if you choose between h264parse and avdec_h264, could you please explain why?

like image 973
Juster Avatar asked Sep 15 '14 03:09

Juster


People also ask

Does GStreamer support RTSP?

GStreamer - ZED RTSP Server ZED RTSP Server is a GStreamer application for Linux operating system that allows to instantiate an RTSP server from a text launch pipeline using the “gst-launch” style.


1 Answers

If your rtspsrc stream is already encoded in H264, just write to mp4 container directly, instead of doing codec process.

Here is my gst-launch-1.0 command for recording rtsp to mp4:

$ gst-launch-1.0 -e rtspsrc location=rtsp://admin:[email protected]/rtsph2641080p protocols=tcp ! rtph264depay ! h264parse ! mp4mux ! filesink location=~/camera.mp4

If you want to do something like modifying width, height (using videoscale), colorspace (using videoconvert), framerate (using capsfilter), etc., which should do based on capability of video/x-raw type, you should decode from video/x-h264 to video/x-raw.

And, after modifying, you should encode again before linking to mux element (like mp4mux, mpegtsmux, matroskamux, ...).

It seems like you are not sure when to use video decoder. Here simply share some experience of using video codec:

  1. If source has been encoded, and I want to write to the container with the same encode, then the pipeline will like:

    src ! ... ! mux ! filesink

  2. If source has been encoded, and I want to write to the container with different encode, or I want to play with videosink, then the pipeline will like:

    src ! decode ! ... ! encode ! mux ! filesink src ! decode ! ... ! videosink

  3. If source hasn't been encoded (like videotestsrc), and I want to write to the container, then the pipeline will like:

    src ! encode ! mux ! filesink

Note: It costs high cpu resources when doing codec ! So, if you don't need to do codec work, don't do that.

You can check out src, sink, mux, demux, enc, dec, convert, ..., etc. elements using convenient tool gst-inspect-1.0. For example:

$ gst-inspect-1.0 | grep mux

to show all available mux elements.

like image 173
sheucm Avatar answered Sep 17 '22 12:09

sheucm