作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设置了mMediaRecorder.setVideoSize
.
希望通过setVideoEncodingBitRate()
获得高、中、低画质效果.调用setVideoEncodingBitRate()
函数时,高、中、低质量应该设置什么值? ?
是 recorder.setVideoEncodingBitRate(3000000)
高质量?如何计算 3000000 的值?
而且我不想使用 CamcorderProfile
.
顺便说一句,我已阅读文档 How to set the MediaRecorder to get the best video quality effect?
最佳答案
没有配置文件:
recorder.setVideoSize(640, 480);
recorder.setVideoFrameRate(16); //might be auto-determined due to lighting
recorder.setVideoEncodingBitRate(3000000);
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);// MPEG_4_SP
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
CamcorderProfile cpHigh = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
recorder.setProfile(cpHigh);
关于android - 如何在 android 中设置 VideoEncodingBitRate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33771301/
我是一名优秀的程序员,十分优秀!