Android examples for android.media:Video
choose Video Size
import android.annotation.TargetApi; import android.util.Size; public class Main { @TargetApi(21)/*from www . j a v a2 s . c om*/ public static Size chooseVideoSize(Size[] choices) { for (Size size : choices) { if (size.getWidth() == size.getHeight() * 4 / 3 && size.getWidth() <= 720) { return size; } } return choices[choices.length - 1]; } }