choose Video Size - Android android.media

Android examples for android.media:Video

Description

choose Video Size

Demo Code

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

}

Related Tutorials