0
私はタイマーと共にビデオを録画したいと思います。私は以下のコードを使用してビデオを録画するように実装しました。また、タイマーの制限も設定してください。しかし、私はそれを開始した後、タイマーを止めたり一時停止したりしたくない。録音中に一時停止ボタンを隠すか、タイマーを止めさせる可能性はある。アンドロイドでカメラからポーズボタンを隠す可能性はありますか
public void getPhotoFromCamera() {
if (!marshMallowPermission.checkPermissionForCamera()&&!marshMallowPermission.checkPermissionForRecord()) {
marshMallowPermission.requestPermissionForCamera();
marshMallowPermission. requestPermissionForRecord();
} else {
if (!marshMallowPermission.checkPermissionForExternalStorage()) {
marshMallowPermission.requestPermissionForExternalStorage();
} else {
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
takeVideoIntent.putExtra("android.intent.extras.LENS_FACING_FRONT", 1);
takeVideoIntent.putExtra("android.intent.extras.CAMERA_FACING", android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT);
takeVideoIntent.putExtra("android.intent.extra.USE_FRONT_CAMERA", true);
takeVideoIntent.putExtra(MediaStore.EXTRA_DURATION_LIMIT, 60);
/* imgag1.setVisibility(View.VISIBLE);
imgag1.startAnimation(animFadein);*/
if (takeVideoIntent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(takeVideoIntent, REQUEST_VIDEO_CAPTURE);
}
}
}
}
ビデオを録画する独自のカスタムカメラアクティビティを作成することができます –
カスタムカメラを作成しましたが、バージョンが正しく記録されません –
本当に完璧なビデオカメラを作るのに時間がかかるでしょう。確かにgithubから見つけられますウィルで完璧なビデオレコーダーアプリのソースを取得 –