List of usage examples for android.media CamcorderProfile QUALITY_LOW
int QUALITY_LOW
To view the source code for android.media CamcorderProfile QUALITY_LOW.
Click Source Link
From source file:com.android.mms.ui.MessageUtils.java
public static int getVideoCaptureDurationLimit() { CamcorderProfile camcorder = CamcorderProfile.get(CamcorderProfile.QUALITY_LOW); return camcorder == null ? 0 : camcorder.duration; }