23 April 2013

การใช้งานกล้องเพื่อบันทึกวีดีโอแบบง่ายๆด้วย Intent

Updated on


        ต่อจากบทความเรื่องการใช้กล้องถ่ายภาพจาก Intent ที่มาคู่กันก็ต้องเป็นบันทึกภาพวีดีโอสิเนอะ ดังนั้นบทความนี้ก็ขอต่อเป็นเรื่องบันทึกวีดีโอละกัน สำหรับ Concept ของการใช้ Intent ก็ยังคงเหมือนเดิมเช่นเคย ซึ่งก็คือ สำหรับแอพที่อยากจะใช้งานบางอย่าง แต่ว่าไม่ได้ต้องการจัดการเอง ดังนั้นการ Intent ไปยังแอพภายนอกก็เป็นตัวเลือกที่อย่างหนึ่งดีเช่นกัน

        สำหรับโค๊ดที่ใช้จัดการในบทความนี้ก็จะน้อยกว่าบทความเดิมซักหน่อย เพราะส่วนมากระบบจัดการให้หมดแล้ว เหลือแค่ไม่กี่คำสั่งที่ต้องจัดการเอง

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(intent, 0);

        จะเห็นว่าคำสั่งเหลือแค่ประกาศค่าและกำหนดค่าให้กับตัวแปรของคลาส Intent โดยกำหนดค่าสำหรับบันทึกภาพวีดีโอ แล้วใช้คำสั่ง startActivityForResult และกำหนด Request Code อีกเช่นเคย (startActivityForResult บังคับให้กำหนด) ซึ่งจะกำหนดเป็นเลขอะไรก็ได้เช่นเคย จากตัวอย่างข้างต้นกำหนดให้เป็น 0

        สำหรับคำสั่งรับข้อมูลในฟังก์ชัน onActivityResult ก็จะเป็นดังนี้

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_VIDEO && resultCode == RESULT_OK) {
        Uri uri = data.getData();  
    }
}

        ก่อนอื่นก็ต้องเช็คค่า Request Code กับ Result Code ก่อนทุกครั้ง แต่ในการรับข้อมูลจะต่างจากตอนถ่ายรูป เพราะมีการรับค่าด้วย โดยข้อมูลจะอยู่ในตัวแปรของคลาส Intent ที่ชื่อว่า data ซึ่งจะสามารถใช้คำสั่งเพื่อกำหนดค่าของคลาส Uri ได้เลย และไฟล์ที่ได้ทำการบันทึกไว้ก็จะเก็บไว้ใน DCIM/Camera อัตโนมัติ ดังนั้นจึงสามารถนำตัวแปรของคลาส Uri ไปใช้งานได้ทันที

        ทีนี้มาดูโค๊ดตัวอย่างของบทความนี้กันเลยดีกว่า


main.xml
<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" >

    <VideoView
        android:id="@+id/video"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/buttonIntent"
        android:layout_centerHorizontal="true"
        android:layout_alignParentTop="true" />

    <Button
        android:id="@+id/buttonIntent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="Record Video" />

</RelativeLayout>

Main.java
package app.akexorcist.intentvideo;

import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.MediaController;
import android.widget.VideoView;

public class Main extends Activity {
    public static final int REQUEST_VIDEO = 3;
    
    VideoView video;
    
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        video = (VideoView)findViewById(R.id.video);
        video.setMediaController(new MediaController(this));
        
        Button buttonIntent = (Button)findViewById(R.id.buttonIntent);
        buttonIntent.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {                
                Intent intent = 
                        new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
                startActivityForResult(intent, REQUEST_VIDEO);
            }
        });
    }
    
    public void onActivityResult(int requestCode, int resultCode
                , Intent data) {
        if (requestCode == REQUEST_VIDEO && resultCode == RESULT_OK) {
            Uri uri = data.getData();  
            video.setVideoURI(uri); 
        }
    }
}

        เนื่องจากโค๊ดค่อนข้างสั้น จึงไม่ขอทำภาพอธิบายอะไรมากนักจากโค๊ดนี้ก็จะสร้าง Video View ไว้ ซึ่งเอาไว้สำหรับแสดงวีดีโอ และสร้าง Button ขึ้นมาเพื่อกดปุ่มไปยังแอพสำหรับบันทึกวีดีโอ โดยกำหนด Request Code เป็นตัวแปร REQUEST_VIDEO มีค่าเป็น 3

        ในส่วนของฟังก์ชัน onActivityResult ก็จะเช็ค Request Code แล้วก็เช็ค Result Code ก่อน ว่าถูกต้องหรือไม่ แล้วจึงทำคำสั่ง โดยจะสร้างคลาส Uri โดยดึงข้อมูลจากตัวแปรที่ชื่อ data ที่ส่งมาจากในฟังก์ชัน onActivityResult แล้วนำไปกำหนดลงใน Video View ที่ได้สร้างไว้ เพื่อแสดงวีดีโอที่บันทึกเมื่อครู่นี้

AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="app.akexorcist.intentvideo"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="8" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="app.akexorcist.intentvideo.Main"
            android:label="@string/app_name" 
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


        สำหรับผู้ที่หลงเข้ามาอ่านคนใดต้องการไฟล์ตัวอย่างสามารถดาวน์โหลดได้ที่ Intent Video [Google Drive]



บทความที่เกี่ยวข้อง

        การใช้ Intent สำหรับแชร์ข้อความ String [Send]
        การใช้ Intent สำหรับแชร์ข้อความสำหรับ Email [Send]
        การใช้ Intent เพื่อเปิด URL [View]
        การใช้ Intent เพื่อเปิดแผนที่ [View]
        การใช้ Intent เพื่อเปิดไฟล์ใดๆ [View]
        การเรียกเปิดแอพฯอื่นๆ ด้วย Intent
        การใช้ Intent สำหรับแชร์ไฟล์ใดๆ [Send]
        การเลือกไฟล์ภาพจาก Gallery ด้วย Intent [Result]
        การใช้งานกล้องเพื่อถ่ายภาพแบบง่ายๆด้วย Intent [Result]
        การใช้งานกล้องเพื่อบันทึกวีดีโอแบบง่ายๆด้วย Intent [Result]
        การอ่าน QR Code และ Barcode ด้วย Intent [Result]
        การรับข้อมูล Intent จากแอพฯอื่นๆ [Get Content]
        การรับข้อมูล Intent จากแอพฯอื่นแล้วส่งข้อมูลกลับไป [Result Content]