Example usage for android.media CamcorderProfile QUALITY_LOW

List of usage examples for android.media CamcorderProfile QUALITY_LOW

Introduction

In this page you can find the example usage for android.media CamcorderProfile QUALITY_LOW.

Prototype

int QUALITY_LOW

To view the source code for android.media CamcorderProfile QUALITY_LOW.

Click Source Link

Document

Quality level corresponding to the lowest available resolution.

Usage

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;
}