1

由于我想通过 CamcorderProfiles ( CamcorderProfile.QUALITY_HIGH/LOW) 设置 Android 摄像机录制质量,我还需要相应地设置摄像机预览大小(和布局)。如何读取我指定的记录配置文件的实际宽度/高度?

4

1 回答 1

0

一旦您有了 CamcorderProfile:

CamcorderProfile cm = CamcorderProfile.get(CamcorderProfile.QUALITY_1080P);

你可以得到videoFrameWidth/Height:

int width = cm.videoFrameWidth
int height = cm.videoFrameHeight

现在,如果我只能让我的摄像机的其余部分工作...... :(

于 2012-08-29T23:48:20.680 回答