Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中用MediaRecorder進行錄影的實例代碼

Android中用MediaRecorder進行錄影的實例代碼

編輯:關於Android編程

MediaRecorder進行錄影和錄音沒什麼差別 ,就多了一個設置圖像的格式

參考:http://www.jb51.net/article/46182.htm

實例:
復制代碼 代碼如下:
    <!-- 授予該程序錄制聲音的權限 -->
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <!-- 授予該程序使用攝像頭的權限 -->
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
    <!-- 授予使用外部存儲的權限 -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

復制代碼 代碼如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <SurfaceView
        android:id="@+id/dView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" 
        android:orientation="horizontal" >

        <Button
            android:id="@+id/record"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/record" />

        <Button
            android:id="@+id/stop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/stop" />
    </LinearLayout>

</RelativeLayout>

復制代碼 代碼如下:
package com.android.xiong.videotest;

import java.io.File;

import android.app.Activity;
import android.hardware.Camera;
import android.media.MediaRecorder;
import android.os.Bundle;
import android.os.Environment;
import android.view.Menu;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class MainActivity extends Activity implements OnClickListener {

 Button record, stop;
 // 系統視頻文件
 File viodFile;
 MediaRecorder mRecorder;
 // 顯示視頻的SurfaceView
 SurfaceView sView;
 // 記錄是否正在進行錄制
 boolean isRecording = false;

 Camera camera;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  record = (Button) findViewById(R.id.record);
  stop = (Button) findViewById(R.id.stop);
  sView = (SurfaceView) findViewById(R.id.dView);
  // stop按鈕不可用
  stop.setEnabled(false);

  // 設置Surface不需要維護自己的緩沖區
  sView.getHolder().setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
  // 設置分辨率
  sView.getHolder().setFixedSize(320, 280);
  // 設置該組件不會讓屏幕自動關閉
  sView.getHolder().setKeepScreenOn(true);

  record.setOnClickListener(this);
  stop.setOnClickListener(this);

 }

 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
  // Inflate the menu; this adds items to the action bar if it is present.
  getMenuInflater().inflate(R.menu.main, menu);
  return true;
 }

 @Override
 public void onClick(View v) {
  switch (v.getId()) {
  case R.id.record:
   if (!Environment.getExternalStorageState().equals(
     Environment.MEDIA_MOUNTED)) {
    Toast.makeText(this, "SD卡不存在,請插卡!", Toast.LENGTH_SHORT).show();
    return;
   }
   try {
    // 創建MediaPlayer對象
    mRecorder = new MediaRecorder();
    mRecorder.reset();
   /* camera = Camera.open();
    camera.unlock();
    camera.setDisplayOrientation(0);
    mRecorder.setCamera(camera);*/
    // 創建保存錄制視頻的視頻文件
    viodFile = new File(Environment.getExternalStorageDirectory()
      .getCanonicalFile() + "/myvideo.mp4");

    if (!viodFile.exists())
     viodFile.createNewFile();

    // 設置從麥克風采集聲音
    mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    // 設置從攝像頭采集圖像
    mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
    // 設置視頻、音頻的輸出格式
    mRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
    // 設置音頻的編碼格式、
    mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
    // 設置圖像編碼格式
    mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
    mRecorder.setOrientationHint(90);
    //mRecorder.setVideoSize(320, 280);
    // mRecorder.setVideoFrameRate(5);
    mRecorder.setOutputFile(viodFile.getAbsolutePath());
    // 指定SurfaceView來預覽視頻
    mRecorder.setPreviewDisplay(sView.getHolder().getSurface());
    mRecorder.prepare();
    // 開始錄制
    mRecorder.start();
    // 讓record按鈕不可用
    record.setEnabled(false);
    // 讓stop按鈕可用
    stop.setEnabled(true);
    isRecording = true;

   } catch (Exception e) {
    e.printStackTrace();
   }
   break;
  case R.id.stop:
   // 如果正在錄制
   if (isRecording) {
    // 停止錄制
    mRecorder.stop();
    // 釋放資源
    mRecorder.release();
    mRecorder = null;
    // 讓record按鈕可用
    record.setEnabled(true);
    // 讓stop按鈕不可用
    stop.setEnabled(false);
   }
   break;
  default:
   break;
  }
 }
}

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved