環境
ffmpeg version git-2019-03-08-147ef1d Copyright (c) 2000-2019 the FFmpeg developers
やりたいこと
RTSPのデータから画像としてJPEG画像として保存したい
だめだったパターン
ffmpeg -y -i rtsp://192.168.1.202:554 -f image2 out.jpg [image2 @ 0x7f85bf800600] Could not get frame filename number 2 from pattern 'out.jpg'. Use '-frames:v 1' for a single image, or '-update' option, or use a pattern such as %03d within the filename. av_interleaved_write_frame(): Invalid argument
なんかエラーになる。言われたとおりオプションつけてみる
うまくいったパターン
ffmpeg -y -i rtsp://192.168.1.202:554 -f image2 -frames:v 1 out.jpg