我想从ffplay命令而不是ffmpeg测量统计信息(FPS,比特率)。这是因为录制数小时会占用磁盘空间。
我现在的方式是用特定时间录制带有ffmpeg的视频,并将统计信息(-qphist)保存在文件中
命令:
Hand hand = new Hand(new String[]{"3c", "4s", "5d", "6h", "7h"})
相反,我想播放rtsp视频并收集统计信息,以便视频不会保存在磁盘上,但仍会获得相同的统计信息。
命令
ffmpeg -rtsp_transport tcp -t $duration -i rtsp://$cred/axis-media/media.amp?videocodec=h264 -qphist -vcodec copy -r 60 -y $outputDIR/camRecording_h264.avi &> $logfile &
使用ffplay我可以通过loglevel获取一些信息,但没有关于FPS或Bitrate
的信息我查了一下man ffplay并用Google搜索,但找不到任何相关信息。
甚至可以从ffplay获取FPS和比特率统计数据吗?
祝你好运