I have an issue with video recording on S4.
What I need is front facing recording with good quality/size ratio. What I do is set CameraProfile
to QUALITY_480P
and that is basically all (video size is about 3MB). Everything is working except on S4 which works only on QUALITY_HIGH
(not even on QUALITY_LOW
). What more same video length has over 50MB on high.
Preview on S4 is OK, but recorded video looks like the image below. All I do is basically this (I use cwac,
but this is my debug code):
CamcorderProfile profile = CamcorderProfile.get(cameraId,
CamcorderProfile.QUALITY_HIGH);
recorder.setProfile(profile);
Any way to fix this please?