Java tutorial
//package com.java2s; import android.media.CamcorderProfile; import android.media.MediaRecorder; public class Main { public static String convertOutputFormatToFileExt() { CamcorderProfile camcorderProfile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH); if (camcorderProfile.fileFormat == MediaRecorder.OutputFormat.MPEG_4) { return ".mp4"; } return ".3gp"; } }