我的目標是使用Android相機拍攝視頻並錄製 麥克風的聲音。視頻+錄音機Android
我使用Google代碼,但無法獲得任何工作示例或代碼。
我已經試過是
recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
CamcorderProfile cpHigh = CamcorderProfile
.get(CamcorderProfile.QUALITY_HIGH);
recorder.setProfile(cpHigh);
recorder.setOutputFile("/sdcard/videocapture_example.mp4");
recorder.setMaxDuration(50000); // 50 seconds
recorder.setMaxFileSize(5000000); // Approximately 5 megabytes
recorder.setVideoSize(320, 240);
recorder.setVideoFrameRate(15);
我得到一個RuntimeException
了java.lang.RuntimeException:setAudioSource失敗。
以下行
recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
試圖用更換
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
但這也不管用。
請張貼你得到了錯誤。 – 2011-11-16 12:30:12
檢查代碼之前,你是否試圖在真實的設備上? –
@alextsc java.lang.RuntimeException:無法啓動活動java.lang.RuntimeException:setAudioSource失敗。 –