【问题标题】:Using surfaceView to capture a video使用surfaceView捕捉视频
【发布时间】:2012-03-03 13:09:21
【问题描述】:

我有一个应用程序,我想使用 Surfaceview 捕获视频并将其存储在我自己创建的文件夹中,这可能吗?

它仅存储视频的默认文件夹。

谢谢你......

【问题讨论】:

    标签: android video camera surfaceview


    【解决方案1】:

    使用此代码

    public class record extends Activity implements OnClickListener, SurfaceHolder.Callback{
    
    MediaRecorder recorder;
    SurfaceHolder holder;
    boolean recording=false;
    public static final String TAG = "VIDEOCAPTURE";
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE); 
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
         WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    
        recorder = new MediaRecorder();// Instantiate our media recording object
        initRecorder();
        setContentView(R.layout.view);
    
        SurfaceView cameraView = (SurfaceView) findViewById(R.id.surface_view);
        holder = cameraView.getHolder();
        holder.addCallback(this);
        holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    
        cameraView.setClickable(true);// make the surface view clickable
        cameraView.setOnClickListener((OnClickListener) this);// onClicklistener to be called when the surface view is clicked
    }
    
    private void initRecorder() {// this takes care of all the mediarecorder settings
        File OutputFile = new File(Environment.getExternalStorageDirectory().getPath());
        String video= "/DCIM/100MEDIA/Video";
        CamcorderProfile cpHigh = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
         recorder.setProfile(cpHigh);        
    
        //recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
        // default microphone to be used for audio
       // recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);// default camera to be used for video capture.
        recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);// generally used also includes h264 and best for flash
       // recorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264); //well known video codec used by many including for flash
        //recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);// typically amr_nb is the only codec for mobile phones so...
    
        //recorder.setVideoFrameRate(15);// typically 12-15 best for normal use. For 1080p usually 30fms is used.
       // recorder.setVideoSize(720,480);// best size for resolution.
        //recorder.setMaxFileSize(10000000);
        recorder.setOutputFile(OutputFile.getAbsolutePath()+video+".3gp");
        //recorder.setVideoEncodingBitRate(256000);//
        //recorder.setAudioEncodingBitRate(8000);
       recorder.setMaxDuration(600000);
    
    
    }
    
    /*if(record.setMaxDuration>60000){
    
        recorder.stop();
        MediaRecorder.OnInfoListener;
        Toast display = Toast.makeText(this, "You have exceeded the record time", Toast.LENGTH_SHORT);// toast shows a display of little sorts
        display.show();
        return true;
    }*/
    
    private void prepareRecorder() {
        recorder.setPreviewDisplay(holder.getSurface());
    
        try {
            recorder.prepare();
        } catch (IllegalStateException e) {
            e.printStackTrace();
            finish();
        } catch (IOException e) {
            e.printStackTrace();
            finish();
        }
    }
    
    public void onClick(View v) {
        if (recording) {
            recorder.stop();
            recording = false;
    
            // Let's initRecorder so we can record again
            initRecorder();
            prepareRecorder();
            Toast display = Toast.makeText(this, "Stopped Recording", Toast.LENGTH_SHORT);// toast shows a display of little sorts
            display.show();
    
    
        } else {
    
            recorder.start();
            Log.v(TAG,"Recording Started"); 
            recording = true;
    
        }
    }
    
    public void surfaceCreated(SurfaceHolder holder) {
        initRecorder();
        Log.v(TAG,"surfaceCreated");
        prepareRecorder();
    }
    
    public void surfaceChanged(SurfaceHolder holder, int format, int width,
            int height) {
    }
    
    public void surfaceDestroyed(SurfaceHolder holder) {
        if (recording) {
            recorder.stop();
            recording = false;
        }
        recorder.release();
        finish();
    
    }
    

    别忘了给相机权限

    【讨论】:

    • thnks 但给出了强制关闭错误我已授予所有权限但......强制关闭......
    • 02-13 18:22:37.733: ERROR/AndroidRuntime(280): FATAL EXCEPTION: main 02-13 18:22:37.733: ERROR/AndroidRuntime(280): java.lang.RuntimeException:无法实例化活动 ComponentInfo{com.a.android/com.a.android.CompXMLActivity}:java.lang.ClassNotFoundException:com.a.android.CompXMLActivity 在加载器 dalvik.system.PathClassLoader[/data/app/com.a .android-1.apk] 02-13 18:24:22.174: WARN/ActivityManager(59): HistoryRecord{44f6fbf0 com.a.android/.SurfacevideoActivity} 的活动销毁超时
    • 老兄,相机在哪里?
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-05-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-04-17
    相关资源
    最近更新 更多