amosyuen / FFmpegVideoRecorder

Customizable Android video recorder library that can combine multiple videos

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Video frame rate is not what I set

HamAndBean opened this issue · comments

video frames is not what I set.I set the video frames 30,when I get the video, it shows the average frame is 17.329 fps ,the max frame is 30 fps,the min frame is 1 fps?

The min and max frame rate depend on the camera. But another problem is it seems that using FFmpeg to directly capture camera images and record it in real time isn't very performant, so sometimes we miss some frames. I'm working on a v2 that uses MediaRecorder to record and then FFmpeg to transform the images. It' not quite ready yet, but it definitely fixes the frame rate problem.

I just released v2.0.0. Please take a look.