Quote:
Originally Posted by sunBathin
Input #0, rtsp, from 'rtsp://root  bvious@10.0.0.64:554/mpeg4/media.amp':
|
FFmpeg is pretty smart about defaults you should be able to do something like
Code:
ffmpeg -i rtsp://root:obvious@10.0.0.64:554/mpeg4/media.amp out.mp4
This will set
- MP4 container
- h.264 codec
- CRF 23 quality
You cannot do "-vcodec copy" because that will simply copy the source mpeg4 video stream, without encoding. As a side note modern FFmpeg uses "-c:v copy" idiom for copying video stream. Please update your scripts.