To świetny przykład. Na początku miałem problemy z uruchomieniem go. Mój błąd był związany z rozmiarem pliku wyjściowego 0 bajtów. Rozpocząłem debugowanie i okazało się, że winowajcą jest record.prepare (). Nie ustawiałem nowego pliku wyjściowego dla rejestratora, więc za każdym razem, gdy dotykałem ekranu, aby zatrzymać nagrywanie wideo, nadpisywał on moje istniejące wideo. Mam nadzieję, że pomoże to komuś innemu :-) Przy okazji warto wspomnieć, że aby ten przykładowy kod działał, musisz również dodać uprawnienia RECORD_AUDIO, CAMERA i WRITE_EXTERNAL_STORAGE do swojego manifestu.
OSTRZEŻENIE! Jeśli użyjesz tego przykładu, nie zapomnij usunąć metody finish () z niszczenia powierzchni! To zamknięcie możliwości powrotu do tej aktywności z innych zajęć. Straciłem tam ponad 2 godziny)
Divers
3
We wszystkich przypadkach duży problem z tym kodem polega na tym, że ... tworzy on dwa pliki, jeden jest dobry, a drugi jest tworzony, gdy ponownie przygotowujemy rejestrator ... czy istnieje sposób na usunięcie tego pliku, jeśli go nie nagramy ...
Swap-IOS -Android
46
Oto kolejny przykład, który działa
publicclassEnregistrementVideoStackActivityextendsActivityimplementsSurfaceHolder.Callback{privateSurfaceHolder surfaceHolder;privateSurfaceView surfaceView;publicMediaRecorder mrec =newMediaRecorder();privateButton startRecording =null;File video;privateCamera mCamera;@Overridepublicvoid onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);
setContentView(R.layout.camera_surface);Log.i(null,"Video starting");
startRecording =(Button)findViewById(R.id.buttonstart);
mCamera =Camera.open();
surfaceView =(SurfaceView) findViewById(R.id.surface_camera);
surfaceHolder = surfaceView.getHolder();
surfaceHolder.addCallback(this);
surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);}@Overridepublicboolean onCreateOptionsMenu(Menu menu){
menu.add(0,0,0,"StartRecording");
menu.add(0,1,0,"StopRecording");returnsuper.onCreateOptionsMenu(menu);}@Overridepublicboolean onOptionsItemSelected(MenuItem item){switch(item.getItemId()){case0:try{
startRecording();}catch(Exception e){String message = e.getMessage();Log.i(null,"Problem Start"+message);
mrec.release();}break;case1://GoToAllNotes
mrec.stop();
mrec.release();
mrec =null;break;default:break;}returnsuper.onOptionsItemSelected(item);}protectedvoid startRecording()throwsIOException{
mrec =newMediaRecorder();// Works well
mCamera.unlock();
mrec.setCamera(mCamera);
mrec.setPreviewDisplay(surfaceHolder.getSurface());
mrec.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mrec.setAudioSource(MediaRecorder.AudioSource.MIC);
mrec.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
mrec.setPreviewDisplay(surfaceHolder.getSurface());
mrec.setOutputFile("/sdcard/zzzz.3gp");
mrec.prepare();
mrec.start();}protectedvoid stopRecording(){
mrec.stop();
mrec.release();
mCamera.release();}privatevoid releaseMediaRecorder(){if(mrec !=null){
mrec.reset();// clear recorder configuration
mrec.release();// release the recorder object
mrec =null;
mCamera.lock();// lock camera for later use}}privatevoid releaseCamera(){if(mCamera !=null){
mCamera.release();// release the camera for other applications
mCamera =null;}}@Overridepublicvoid surfaceChanged(SurfaceHolder holder,int format,int width,int height){}@Overridepublicvoid surfaceCreated(SurfaceHolder holder){if(mCamera !=null){Parametersparams= mCamera.getParameters();
mCamera.setParameters(params);}else{Toast.makeText(getApplicationContext(),"Camera not available!",Toast.LENGTH_LONG).show();
finish();}}@Overridepublicvoid surfaceDestroyed(SurfaceHolder holder){
mCamera.stopPreview();
mCamera.release();}}
Dziękuję, przykład vanevery przechowuje plik o rozmiarze 0 bajtów, co nie jest przydatne
user609239
Po kliknięciu menu sprzętu, pojawi się start i stop nagrań. Ale w tabletach z Androidem nie ma menu sprzętowego. W takim scenariuszu, jak mogę rozpocząć i zatrzymać przechwytywanie wideo.?
Karthick
Trochę poprawek, aby skompilować przykład, ale to zadziałało cudownie. Dzięki!
Gopherkhan,
@Milos Czy możesz mi powiedzieć, jak osadzić obraz znacznika w wideo powierzchni?
Ahmad Arslan
5
Nagrywasz audio i wideo przy użyciu tej samej klasy MediaRecorder. To całkiem proste. Oto przykład .
Istnieją subtelne błędy w implementacji wideo w MediaRecorder, które powodują błędy segmentacji z nieprzewidywalnych powodów. Podejrzewam, że właśnie dlatego @Vishnuparsad opublikował to pytanie w pierwszej kolejności.
bobpoekert
W takim razie powinien był o tym wspomnieć :)
Drakosha
Nagrywanie wideo wymaga nieco więcej pracy, ponieważ musisz poradzić sobie z powierzchnią podglądu.
publicclassVideoextendsActivityimplementsOnClickListener,SurfaceHolder.Callback{privatestaticfinalString TAG ="CAMERA_TUTORIAL";privateSurfaceView mSurfaceView;privateSurfaceHolder mHolder;privateCamera mCamera;privateboolean previewRunning;privateMediaRecorder mMediaRecorder;privatefinalint maxDurationInMs =20000;privatefinallong maxFileSizeInBytes =500000;privatefinalint videoFramesPerSecond =20;Button btn_record;boolean mInitSuccesful =false;File file;ToggleButton mToggleButton;@Overridepublicvoid onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);
setContentView(R.layout.video);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
mSurfaceView =(SurfaceView) findViewById(R.id.surface_camera);
mHolder = mSurfaceView.getHolder();
mHolder.addCallback(this);
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
mToggleButton =(ToggleButton) findViewById(R.id.toggleRecordingButton);
mToggleButton.setOnClickListener(newOnClickListener(){@Override// toggle video recordingpublicvoid onClick(View v){if(((ToggleButton) v).isChecked())
mMediaRecorder.start();else{
mMediaRecorder.stop();
mMediaRecorder.reset();try{
initRecorder(mHolder.getSurface());}catch(IOException e){
e.printStackTrace();}}}});}privatevoid initRecorder(Surface surface)throwsIOException{// It is very important to unlock the camera before doing setCamera// or it will results in a black previewif(mCamera ==null){
mCamera =Camera.open();
mCamera.unlock();}if(mMediaRecorder ==null)
mMediaRecorder =newMediaRecorder();
mMediaRecorder.setPreviewDisplay(surface);
mMediaRecorder.setCamera(mCamera);
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT);
mMediaRecorder.setOutputFile(this.initFile().getAbsolutePath());// No limit. Don't forget to check the space on disk.
mMediaRecorder.setMaxDuration(50000);
mMediaRecorder.setVideoFrameRate(24);
mMediaRecorder.setVideoSize(1280,720);
mMediaRecorder.setVideoEncodingBitRate(3000000);
mMediaRecorder.setAudioEncodingBitRate(8000);
mMediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);try{
mMediaRecorder.prepare();}catch(IllegalStateException e){// This is thrown if the previous calls are not called with the// proper order
e.printStackTrace();}
mInitSuccesful =true;}privateFile initFile(){// File dir = new// File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES),// thisFile dir =newFile(Environment.getExternalStorageDirectory(),this.getClass().getPackage().getName());if(!dir.exists()&&!dir.mkdirs()){Log.wtf(TAG,"Failed to create storage directory: "+ dir.getAbsolutePath());Toast.makeText(Video.this,"not record",Toast.LENGTH_SHORT);
file =null;}else{
file =newFile(dir.getAbsolutePath(),newSimpleDateFormat("'IMG_'yyyyMMddHHmmss'.mp4'").format(newDate()));}return file;}@Overridepublicvoid surfaceCreated(SurfaceHolder holder){try{if(!mInitSuccesful)
initRecorder(mHolder.getSurface());}catch(IOException e){// TODO Auto-generated catch block
e.printStackTrace();}}privatevoid shutdown(){// Release MediaRecorder and especially the Camera as it's a shared// object that can be used by other applications
mMediaRecorder.reset();
mMediaRecorder.release();
mCamera.release();// once the objects have been released they can't be reused
mMediaRecorder =null;
mCamera =null;}@Overridepublicvoid surfaceDestroyed(SurfaceHolder holder){
shutdown();}@Overridepublicvoid surfaceChanged(SurfaceHolder holder,int format,int width,int height){// TODO Auto-generated method stub}@Overridepublicvoid onClick(View v){// TODO Auto-generated method stub}}
Klasa MediaMetadataRetriever
publicclassMediaMetadataRetriever{static{System.loadLibrary("media_jni");
native_init();}// The field below is accessed by native methods@SuppressWarnings("unused")privateint mNativeContext;publicMediaMetadataRetriever(){
native_setup();}/**
* Call this method before setDataSource() so that the mode becomes
* effective for subsequent operations. This method can be called only once
* at the beginning if the intended mode of operation for a
* MediaMetadataRetriever object remains the same for its whole lifetime,
* and thus it is unnecessary to call this method each time setDataSource()
* is called. If this is not never called (which is allowed), by default the
* intended mode of operation is to both capture frame and retrieve meta
* data (i.e., MODE_GET_METADATA_ONLY | MODE_CAPTURE_FRAME_ONLY).
* Often, this may not be what one wants, since doing this has negative
* performance impact on execution time of a call to setDataSource(), since
* both types of operations may be time consuming.
*
* @param mode The intended mode of operation. Can be any combination of
* MODE_GET_METADATA_ONLY and MODE_CAPTURE_FRAME_ONLY:
* 1. MODE_GET_METADATA_ONLY & MODE_CAPTURE_FRAME_ONLY:
* For neither frame capture nor meta data retrieval
* 2. MODE_GET_METADATA_ONLY: For meta data retrieval only
* 3. MODE_CAPTURE_FRAME_ONLY: For frame capture only
* 4. MODE_GET_METADATA_ONLY | MODE_CAPTURE_FRAME_ONLY:
* For both frame capture and meta data retrieval
*/publicnativevoid setMode(int mode);/**
* @return the current mode of operation. A negative return value indicates
* some runtime error has occurred.
*/publicnativeint getMode();/**
* Sets the data source (file pathname) to use. Call this
* method before the rest of the methods in this class. This method may be
* time-consuming.
*
* @param path The path of the input media file.
* @throws IllegalArgumentException If the path is invalid.
*/publicnativevoid setDataSource(String path)throwsIllegalArgumentException;/**
* Sets the data source (FileDescriptor) to use. It is the caller's
* responsibility to close the file descriptor. It is safe to do so as soon
* as this call returns. Call this method before the rest of the methods in
* this class. This method may be time-consuming.
*
* @param fd the FileDescriptor for the file you want to play
* @param offset the offset into the file where the data to be played starts,
* in bytes. It must be non-negative
* @param length the length in bytes of the data to be played. It must be
* non-negative.
* @throws IllegalArgumentException if the arguments are invalid
*/publicnativevoid setDataSource(FileDescriptor fd,long offset,long length)throwsIllegalArgumentException;/**
* Sets the data source (FileDescriptor) to use. It is the caller's
* responsibility to close the file descriptor. It is safe to do so as soon
* as this call returns. Call this method before the rest of the methods in
* this class. This method may be time-consuming.
*
* @param fd the FileDescriptor for the file you want to play
* @throws IllegalArgumentException if the FileDescriptor is invalid
*/publicvoid setDataSource(FileDescriptor fd)throwsIllegalArgumentException{// intentionally less than LONG_MAX
setDataSource(fd,0,0x7ffffffffffffffL);}/**
* Sets the data source as a content Uri. Call this method before
* the rest of the methods in this class. This method may be time-consuming.
*
* @param context the Context to use when resolving the Uri
* @param uri the Content URI of the data you want to play
* @throws IllegalArgumentException if the Uri is invalid
* @throws SecurityException if the Uri cannot be used due to lack of
* permission.
*/publicvoid setDataSource(Context context,Uri uri)throwsIllegalArgumentException,SecurityException{if(uri ==null){thrownewIllegalArgumentException();}String scheme = uri.getScheme();if(scheme ==null|| scheme.equals("file")){
setDataSource(uri.getPath());return;}AssetFileDescriptor fd =null;try{ContentResolver resolver = context.getContentResolver();try{
fd = resolver.openAssetFileDescriptor(uri,"r");}catch(FileNotFoundException e){thrownewIllegalArgumentException();}if(fd ==null){thrownewIllegalArgumentException();}FileDescriptor descriptor = fd.getFileDescriptor();if(!descriptor.valid()){thrownewIllegalArgumentException();}// Note: using getDeclaredLength so that our behavior is the same// as previous versions when the content provider is returning// a full file.if(fd.getDeclaredLength()<0){
setDataSource(descriptor);}else{
setDataSource(descriptor, fd.getStartOffset(), fd.getDeclaredLength());}return;}catch(SecurityException ex){}finally{try{if(fd !=null){
fd.close();}}catch(IOException ioEx){}}
setDataSource(uri.toString());}/**
* Call this method after setDataSource(). This method retrieves the
* meta data value associated with the keyCode.
*
* The keyCode currently supported is listed below as METADATA_XXX
* constants. With any other value, it returns a null pointer.
*
* @param keyCode One of the constants listed below at the end of the class.
* @return The meta data value associate with the given keyCode on success;
* null on failure.
*/publicnativeString extractMetadata(int keyCode);/**
* Call this method after setDataSource(). This method finds a
* representative frame if successful and returns it as a bitmap. This is
* useful for generating a thumbnail for an input media source.
*
* @return A Bitmap containing a representative video frame, which
* can be null, if such a frame cannot be retrieved.
*/publicnativeBitmap captureFrame();/**
* Call this method after setDataSource(). This method finds the optional
* graphic or album art associated (embedded or external url linked) the
* related data source.
*
* @return null if no such graphic is found.
*/publicnativebyte[] extractAlbumArt();/**
* Call it when one is done with the object. This method releases the memory
* allocated internally.
*/publicnativevoid release();privatenativevoid native_setup();privatestaticnativevoid native_init();privatenativefinalvoid native_finalize();@Overrideprotectedvoid finalize()throwsThrowable{try{
native_finalize();}finally{super.finalize();}}publicstaticfinalint MODE_GET_METADATA_ONLY =0x01;publicstaticfinalint MODE_CAPTURE_FRAME_ONLY =0x02;/*
* Do not change these values without updating their counterparts
* in include/media/mediametadataretriever.h!
*/publicstaticfinalint METADATA_KEY_CD_TRACK_NUMBER =0;publicstaticfinalint METADATA_KEY_ALBUM =1;publicstaticfinalint METADATA_KEY_ARTIST =2;publicstaticfinalint METADATA_KEY_AUTHOR =3;publicstaticfinalint METADATA_KEY_COMPOSER =4;publicstaticfinalint METADATA_KEY_DATE =5;publicstaticfinalint METADATA_KEY_GENRE =6;publicstaticfinalint METADATA_KEY_TITLE =7;publicstaticfinalint METADATA_KEY_YEAR =8;publicstaticfinalint METADATA_KEY_DURATION =9;publicstaticfinalint METADATA_KEY_NUM_TRACKS =10;publicstaticfinalint METADATA_KEY_IS_DRM_CRIPPLED =11;publicstaticfinalint METADATA_KEY_CODEC =12;publicstaticfinalint METADATA_KEY_RATING =13;publicstaticfinalint METADATA_KEY_COMMENT =14;publicstaticfinalint METADATA_KEY_COPYRIGHT =15;publicstaticfinalint METADATA_KEY_BIT_RATE =16;publicstaticfinalint METADATA_KEY_FRAME_RATE =17;publicstaticfinalint METADATA_KEY_VIDEO_FORMAT =18;publicstaticfinalint METADATA_KEY_VIDEO_HEIGHT =19;publicstaticfinalint METADATA_KEY_VIDEO_WIDTH =20;publicstaticfinalint METADATA_KEY_WRITER =21;// Add more here...}
Cześć. Próbuję zaimplementować Twój kod w moim projekcie, ale funkcja surfaceCreated nigdy nie jest wywoływana?
REJH
@REJH, nazywa się to po utworzeniu powierzchni, ponieważ ta linia mHolder.addCallback(this);dołącza klasę Activity do obsługi zdarzeń powierzchniowych. Twoje IDE może nie rozpoznać tego wywołania, ale powinno zostać wywołane.
vp_arth
3
Sprawdź ten przykładowy kod podglądu aparatu, CameraPreview. Pomogłoby to w opracowaniu kodu nagrywania wideo do podglądu wideo, tworzenia MediaRecorderobiektu i ustawiania parametrów nagrywania wideo.
Z korzyścią dla wyszukiwarek ten przykład daje aktywny podgląd z przyciskiem start / stop do nagrywania. Został zmodyfikowany na podstawie tego bloga na Androida i wydaje się dość niezawodny.
klasa java (VideoWithSurfaceVw)
package<<your packagename here>>;import java.io.IOException;import java.text.SimpleDateFormat;import java.util.Date;import android.app.Activity;import android.content.Context;import android.hardware.Camera;import android.media.CamcorderProfile;import android.media.MediaRecorder;import android.os.Bundle;import android.view.SurfaceHolder;import android.view.SurfaceView;import android.view.View;import android.widget.Button;import android.widget.FrameLayout;import android.widget.Toast;publicclassVideoWithSurfaceVwextendsActivity{// Adapted from http://sandyandroidtutorials.blogspot.co.uk/2013/05/android-video-capture-tutorial.htmlprivateCamera myCamera;privateMyCameraSurfaceView myCameraSurfaceView;privateMediaRecorder mediaRecorder;Button myButton;SurfaceHolder surfaceHolder;boolean recording;/** Called when the activity is first created. */@Overridepublicvoid onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);
recording =false;
setContentView(R.layout.activity_video_with_surface_vw);//Get Camera for preview
myCamera = getCameraInstance();if(myCamera ==null){Toast.makeText(VideoWithSurfaceVw.this,"Fail to get Camera",Toast.LENGTH_LONG).show();}
myCameraSurfaceView =newMyCameraSurfaceView(this, myCamera);FrameLayout myCameraPreview =(FrameLayout)findViewById(R.id.videoview);
myCameraPreview.addView(myCameraSurfaceView);
myButton =(Button)findViewById(R.id.mybutton);
myButton.setOnClickListener(myButtonOnClickListener);}Button.OnClickListener myButtonOnClickListener
=newButton.OnClickListener(){@Overridepublicvoid onClick(View v){// TODO Auto-generated method stubtry{if(recording){// stop recording and release camera
mediaRecorder.stop();// stop the recording
releaseMediaRecorder();// release the MediaRecorder object//Exit after saved//finish();
myButton.setText("REC");
recording =false;}else{//Release Camera before MediaRecorder start
releaseCamera();if(!prepareMediaRecorder()){Toast.makeText(VideoWithSurfaceVw.this,"Fail in prepareMediaRecorder()!\n - Ended -",Toast.LENGTH_LONG).show();
finish();}
mediaRecorder.start();
recording =true;
myButton.setText("STOP");}}catch(Exception ex){
ex.printStackTrace();}}};privateCamera getCameraInstance(){// TODO Auto-generated method stubCamera c =null;try{
c =Camera.open();// attempt to get a Camera instance}catch(Exception e){// Camera is not available (in use or does not exist)}return c;// returns null if camera is unavailable}privateString getFileName_CustomFormat(){SimpleDateFormat sdfDate =newSimpleDateFormat("yyyy-MM-dd HH_mm_ss");Date now =newDate();String strDate = sdfDate.format(now);return strDate;}privateboolean prepareMediaRecorder(){
myCamera = getCameraInstance();
mediaRecorder =newMediaRecorder();
myCamera.unlock();
mediaRecorder.setCamera(myCamera);
mediaRecorder.setAudioSource(MediaRecorder.AudioSource.CAMCORDER);
mediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
mediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
mediaRecorder.setOutputFile("/sdcard/"+ getFileName_CustomFormat()+".mp4");//mediaRecorder.setOutputFile("/sdcard/myvideo1.mp4");
mediaRecorder.setMaxDuration(60000);// Set max duration 60 sec.
mediaRecorder.setMaxFileSize(50000000);// Set max file size 50M
mediaRecorder.setPreviewDisplay(myCameraSurfaceView.getHolder().getSurface());try{
mediaRecorder.prepare();}catch(IllegalStateException e){
releaseMediaRecorder();returnfalse;}catch(IOException e){
releaseMediaRecorder();returnfalse;}returntrue;}@Overrideprotectedvoid onPause(){super.onPause();
releaseMediaRecorder();// if you are using MediaRecorder, release it first
releaseCamera();// release the camera immediately on pause event}privatevoid releaseMediaRecorder(){if(mediaRecorder !=null){
mediaRecorder.reset();// clear recorder configuration
mediaRecorder.release();// release the recorder object
mediaRecorder =newMediaRecorder();
myCamera.lock();// lock camera for later use}}privatevoid releaseCamera(){if(myCamera !=null){
myCamera.release();// release the camera for other applications
myCamera =null;}}publicclassMyCameraSurfaceViewextendsSurfaceViewimplementsSurfaceHolder.Callback{privateSurfaceHolder mHolder;privateCamera mCamera;publicMyCameraSurfaceView(Context context,Camera camera){super(context);
mCamera = camera;// Install a SurfaceHolder.Callback so we get notified when the// underlying surface is created and destroyed.
mHolder = getHolder();
mHolder.addCallback(this);// deprecated setting, but required on Android versions prior to 3.0
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);}@Overridepublicvoid surfaceChanged(SurfaceHolder holder,int format,int weight,int height){// If your preview can change or rotate, take care of those events here.// Make sure to stop the preview before resizing or reformatting it.if(mHolder.getSurface()==null){// preview surface does not existreturn;}// stop preview before making changestry{
mCamera.stopPreview();}catch(Exception e){// ignore: tried to stop a non-existent preview}// make any resize, rotate or reformatting changes here// start preview with new settingstry{
mCamera.setPreviewDisplay(mHolder);
mCamera.startPreview();}catch(Exception e){}}@Overridepublicvoid surfaceCreated(SurfaceHolder holder){// TODO Auto-generated method stub// The Surface has been created, now tell the camera where to draw the preview.try{
mCamera.setPreviewDisplay(holder);
mCamera.startPreview();}catch(IOException e){}}@Overridepublicvoid surfaceDestroyed(SurfaceHolder holder){// TODO Auto-generated method stub}}}
Uruchomienie projektu w Android Studio powoduje wyświetlenie następującego komunikatu o błędzie w pliku .xml: Błąd: (29) Błąd podczas analizowania XML: nie znaleziono elementu, gdzie 29 to wiersz odpowiadający </RelativeLayout>
bergercookie
@bergercookie - czy znalazłeś / naprawiłeś problem? Podniosłem to z mojego działającego kodu (używając Android Studio). Zapraszam do edycji mojego posta, jeśli wystąpi problem.
HockeyJ
1
@bergercookie - w przykładzie xml brakuje po prostu zamykającego tagu RelativeLayout.
Poprawiłem
1
Na marginesie - wygląda na to, że jest błąd w Android API lub błędna dokumentacja, a może jestem po prostu głupi. Dokumenty Google jasno stanowią, co następuje:
Uwaga: począwszy od Androida 4.0 (poziom API 14), wywołania Camera.lock () i Camera.unlock () są zarządzane automatycznie.
Po dosłownie całych dniach bez powodzenia i wielu drobnych problemach typu „nie udało się uruchomić”, pewnego rodzaju błędy, zdecydowałem się ręcznie zaimplementować blokowanie i BAM! wszystko działało dobrze.
Używam emulatora genymotion dla urządzenia 4.1.1 z min sdk 14.
publicclassSongVideoActivityextendsBaseActivityimplementsSurfaceHolder.Callback{privateint mCameraContainerWidth =0;privateSurfaceView mSurfaceView =null;privateSurfaceHolder mSurfaceHolder =null;privateCamera mCamera =null;privateboolean mIsRecording =false;privateint mPreviewHeight;privateint mPreviewWidth;MediaRecorder mRecorder;@Overrideprotectedvoid onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);
setContentView(R.layout.activity_song_video);Thread.setDefaultUncaughtExceptionHandler(newThread.UncaughtExceptionHandler(){@Overridepublicvoid uncaughtException(Thread thread,Throwable ex){
releaseMediaRecorder();
releaseCamera();}});
mCamera = getCamera();//camera preview
mSurfaceView =(SurfaceView) findViewById(R.id.surfaceView);
mSurfaceHolder = mSurfaceView.getHolder();
mSurfaceHolder.addCallback(this);// deprecated setting, but required on Android versions prior to 3.0
mSurfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
mCameraContainerWidth = mSurfaceView.getLayoutParams().width;
findViewById(R.id.btnRecord).setOnClickListener(newView.OnClickListener(){@Overridepublicvoid onClick(View v){if(mIsRecording){
stopRecording();}else{// initialize video cameraif(prepareVideoRecorder()){// Camera is available and unlocked, MediaRecorder is prepared,// now you can start recording
mRecorder.start();// inform the user that recording has startedToast.makeText(getApplicationContext(),"Started recording",Toast.LENGTH_SHORT).show();
mIsRecording =true;}else{// prepare didn't work, release the camera
releaseMediaRecorder();// inform user}}}});}privatevoid stopRecording(){
mRecorder.stop();// stop the recording
releaseMediaRecorder();// release the MediaRecorder object
mCamera.lock();// take camera access back from MediaRecorder// inform the user that recording has stoppedToast.makeText(this,"Recording complete",Toast.LENGTH_SHORT).show();
mIsRecording =false;}@Overrideprotectedvoid onDestroy(){super.onDestroy();
releaseMediaRecorder();// if you are using MediaRecorder, release it first
releaseCamera();// release the camera immediately on pause event}privateCamera getCamera(){Camera.CameraInfo cameraInfo =newCamera.CameraInfo();for(int camIdx =0; camIdx <Camera.getNumberOfCameras(); camIdx++){Camera.getCameraInfo(camIdx, cameraInfo);if(cameraInfo.facing ==Camera.CameraInfo.CAMERA_FACING_FRONT){try{return mCamera =Camera.open(camIdx);}catch(RuntimeException e){Log.e("cameras","Camera failed to open: "+ e.getLocalizedMessage());}}}returnnull;}@Overrideprotectedvoid onPause(){super.onPause();
releaseMediaRecorder();// if you are using MediaRecorder, release it first
releaseCamera();// release the camera immediately on pause event}privateCamera.Size getBestPreviewSize(Camera.Parameters parameters){Camera.Size result=null;for(Camera.Size size : parameters.getSupportedPreviewSizes()){if(size.width < size.height)continue;//we are only interested in landscape variantsif(result ==null){
result = size;}else{int resultArea = result.width*result.height;int newArea = size.width*size.height;if(newArea > resultArea){
result = size;}}}return(result);}privateboolean prepareVideoRecorder(){
mRecorder =newMediaRecorder();// Step 1: Unlock and set camera to MediaRecorder
mCamera.unlock();
mRecorder.setCamera(mCamera);// Step 2: Set sources
mRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
mRecorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);//recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);// Step 3: Set a CamcorderProfile (requires API Level 8 or higher)// Customise your profile based on a pre-existing profileCamcorderProfile profile =CamcorderProfile.get(Camera.CameraInfo.CAMERA_FACING_FRONT,CamcorderProfile.QUALITY_LOW);
mRecorder.setProfile(profile);// Step 4: Set output file
mRecorder.setOutputFile(newFile(getFilesDir(),"movie-"+ UUID.randomUUID().toString()).getAbsolutePath());//recorder.setMaxDuration(50000); // 50 seconds//recorder.setMaxFileSize(500000000); // Approximately 500 megabytes
mRecorder.setVideoSize(mPreviewWidth, mPreviewHeight);// Step 5: Set the preview output
mRecorder.setPreviewDisplay(mSurfaceHolder.getSurface());// Step 6: Prepare configured MediaRecordertry{
mRecorder.prepare();}catch(IllegalStateException e){Toast.makeText(getApplicationContext(),"exception: "+ e.getMessage(),Toast.LENGTH_LONG).show();
releaseMediaRecorder();returnfalse;}catch(IOException e){Toast.makeText(getApplicationContext(),"exception: "+ e.getMessage(),Toast.LENGTH_LONG).show();
releaseMediaRecorder();returnfalse;}returntrue;}privatevoid releaseMediaRecorder(){if(mRecorder !=null){
mRecorder.reset();// clear recorder configuration
mRecorder.release();// release the recorder object
mRecorder =null;
mCamera.lock();// lock camera for later use}}privatevoid releaseCamera(){if(mCamera !=null){
mCamera.release();// release the camera for other applications
mCamera =null;}}@Overridepublicvoid surfaceCreated(SurfaceHolder holder){// The Surface has been created, now tell the camera where to draw the preview.Camera.Parameters parameters = mCamera.getParameters();
parameters.setRecordingHint(true);Camera.Size size = getBestPreviewSize(parameters);
mCamera.setParameters(parameters);//resize the view to the specified surface view width in layoutint newHeight = size.height /(size.width / mCameraContainerWidth);
mSurfaceView.getLayoutParams().height = newHeight;}@Overridepublicvoid surfaceChanged(SurfaceHolder holder,int format,int width,int height){
mPreviewHeight = mCamera.getParameters().getPreviewSize().height;
mPreviewWidth = mCamera.getParameters().getPreviewSize().width;
mCamera.stopPreview();try{
mCamera.setPreviewDisplay(mSurfaceHolder);}catch(IOException e){
e.printStackTrace();}
mCamera.startPreview();}@Overridepublicvoid surfaceDestroyed(SurfaceHolder holder){if(mIsRecording){
stopRecording();}
releaseMediaRecorder();
releaseCamera();}}
To nie działa. Powoduje awarię mojej aplikacji, zamykając maszynę wirtualną.
Pink Jazz
Pracuje! ale nagrane wideo jest do góry nogami. Również gdy próbuję zrobić match_parent na szerokości, podgląd nie jest widoczny. : /
M. Usman Khan
dla podglądu na pełnym ekranie ustaw szerokość i wysokość jako wrap_content.
M. Usman Khan
Jak mogę ustawić wariant PORTRET?
Rozina
1
W grudniu 2017 r. Pojawiły się pewne aktualizacje, np. Użycie programu android.hardware.Camerajest teraz przestarzałe. Podczas gdy nowszy android.hardware.camera2ma przydatne rzeczy, takie jak CameraManager.
@pookie Myślę, że tak, ale zapomniałem, ponieważ minęło 1,5 roku. Właściwie możesz rzucić okiem na te linki repozytorium GitHub, ponieważ będą one miały pewne „szybkie wprowadzenie”, które możesz śledzić.
ch271828n
Świetnie, dzięki :)
pookie
@pookie Jeśli uważasz, że to pomocne, oddaj głos za :)
Odpowiedzi:
Oto prosty przykład nagrywania wideo przy użyciu MediaRecorder:
To z mojej książki: Pro Android Media: Developing Graphics, Music, Video, and Rich Media Apps for Smartphones and Tablets
Nie zapomnij również uwzględnić tych uprawnień w manifeście:
źródło
Oto kolejny przykład, który działa
camera_surface.xml
I oczywiście dołącz te uprawnienia w manifest:
źródło
Nagrywasz audio i wideo przy użyciu tej samej klasy MediaRecorder. To całkiem proste. Oto przykład .
źródło
To demo będzie pomocne dla Ciebie ....
video.xml
Twoja główna aktywność: Video.java
Klasa MediaMetadataRetriever
źródło
mHolder.addCallback(this);
dołącza klasę Activity do obsługi zdarzeń powierzchniowych. Twoje IDE może nie rozpoznać tego wywołania, ale powinno zostać wywołane.Sprawdź ten przykładowy kod podglądu aparatu,
CameraPreview
. Pomogłoby to w opracowaniu kodu nagrywania wideo do podglądu wideo, tworzeniaMediaRecorder
obiektu i ustawiania parametrów nagrywania wideo.źródło
Z korzyścią dla wyszukiwarek ten przykład daje aktywny podgląd z przyciskiem start / stop do nagrywania. Został zmodyfikowany na podstawie tego bloga na Androida i wydaje się dość niezawodny.
klasa java (VideoWithSurfaceVw)
aktywność (activity_video_with_surface_vw)
źródło
Na marginesie - wygląda na to, że jest błąd w Android API lub błędna dokumentacja, a może jestem po prostu głupi. Dokumenty Google jasno stanowią, co następuje:
Zobacz: http://developer.android.com/guide/topics/media/camera.html
Wydaje się, że tak nie jest!
Po dosłownie całych dniach bez powodzenia i wielu drobnych problemach typu „nie udało się uruchomić”, pewnego rodzaju błędy, zdecydowałem się ręcznie zaimplementować blokowanie i BAM! wszystko działało dobrze.
Używam emulatora genymotion dla urządzenia 4.1.1 z min sdk 14.
źródło
Powyższy przykład zadziała, jeśli używasz tylnej kamery. Jeśli używasz przedniego aparatu, będziesz musiał dostosować kilka rzeczy:
Po pierwsze, musisz dodać nowe pozwolenie w manifeście.
<uses-feature android:name="android.hardware.camera.front" android:required="false" />
W twojej
initRecorder
metodzie zamiastMusisz użyć:
ponieważ
CamcorderProfile.QUALITY_HIGH
jest zarezerwowany dla tylnej kamery.Będziesz także musiał ustawić rozmiar wideo dla nagrywarki multimediów, tak jak jest w widoku powierzchni.
Oto pełny przykład nagrywania wideo z przedniej kamery z małym wyświetlaczem podglądu:
Android.manifest
activity_camera.xml
CameraActivity.java
źródło
W grudniu 2017 r. Pojawiły się pewne aktualizacje, np. Użycie programu
android.hardware.Camera
jest teraz przestarzałe. Podczas gdy nowszyandroid.hardware.camera2
ma przydatne rzeczy, takie jakCameraManager
.Osobiście bardzo lubię ten przykład, który korzysta z obecnego API i działa jak urok: https://github.com/googlesamples/android-Camera2Video
Obejmuje również pytanie użytkownika o wymagane uprawnienia na początku i oferuje podgląd wideo przed rozpoczęciem nagrywania wideo.
(Ponadto uważam, że kod jest naprawdę piękny (i jest to dla mnie bardzo rzadkie ^^), ale to tylko moja subiektywna opinia.)
źródło
Zamiast pisać kod ze szkicu, możesz skorzystać z biblioteki w serwisie GitHub. Na przykład: https://github.com/CameraKit/camerakit-android (lub https://github.com/google/cameraview lub https://github.com/hujiaweibujidao/CameraView i tak dalej). Wtedy wystarczy:
źródło