I programatically open camera to take a video. I tell camera to put the video file to a specified place using code like below:

Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
File out = new File("/sdcard/camera.mp4");
Uri uri = Uri.fromFile(out);
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(intent, GlobalUtility.CAMERA_VIDEO);

It works well on a HTC phone. But on my moto defy, it just ignore the MediaStore.EXTRA_OUTPUT parameter, and put the video to the default place. So then I use this code in onActivityResult() function to solve the problem:

private String getRealPathFromURI(Uri contentUri) {
    String[] proj = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(contentUri, proj, null, null, null);
    int column_index = cursor
            .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
}

String realPath;
try {
    File file = new File("/sdcard/camera.mp4");
    if (!file.exists()) {
        Uri videoUri = data.getData();
        realPath = getRealPathFromURI(videoUri);
    }
} catch (Exception ex) {
    Uri videoUri = data.getData();
    realPath = getRealPathFromURI(videoUri);
}

Hope this will help some others.

link|improve this question
1  
thankx for the info..tell me Environment.getExternalStorageDirectory() didn't work for you insted of passing static path like /sdcard??? – FasteKerinns Nov 9 '11 at 5:19
This is not a sdcard problem. If I take a picture instead of a video, "/sdcard/camera.png" works well on the defy. – Sun Junwen Nov 10 '11 at 3:20
feedback

2 Answers

Just because /sdcard/ is the sdcard directory on one phone and one build of Android doesn't mean that will stay consistent.

You will want to use Environment.getExternalStorageDirectory() as Frankenstein's comment suggests. This will always work to get the directory of the SD Card.

You will also want to check that the SD Card is currently mountable as the phone may be in USB Storage mode.

Try something like...

if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
    Log.d(TAG, "No SDCARD");
} else {
    File out = new File(Environment.getExternalStorageDirectory()+File.separator+"camera.mp4");     
}
link|improve this answer
feedback

I have done this way and still didn't found any error..so please try this in you "moto defy" so I can know the reality.

To Call Intent :

Intent intent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(intent,2323);

In Activity on Result:

Uri contentUri = data.getData();
String[] proj = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
String tmppath = cursor.getString(column_index);

videoView.setVideoPath(path);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.