Zhaoss / WeiXinRecordedDemo

仿微信视频拍摄UI, 基于ffmpeg的视频录制编辑

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

手机录制视频时间变长

linhuan1994 opened this issue · comments

试了几台手机,华为,oppo。录制10s,最终得到的视频长度是14s。请问怎么解决呢?

+1

checkMaxFrame 中,校验最好是精确到每一帧,计算如下:
int rightFrame = (int) (totalTime / 1000 * frameRate + (totalTime % 1000) * frameRate / 1000);

这个框架问题很大,不建议后来者使用。。。