Droidman
Droidman

Reputation: 11608

android get path of recorded video/audio

I let the user record a video/audio by doing following:

Intent videoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
        startActivityForResult(videoIntent, VIDEO_REQUEST);
         //pretty the same thing for audio

I'm not sure what to do in the onActivityResult() method to get the Uri of the recorded file and then convert it to an absolute path like /mnt/sdcard/DCIM/Camera/1231.avi

Any help is appreciated.

Upvotes: 1

Views: 1760

Answers (1)

Hardik Vora
Hardik Vora

Reputation: 414

Try my program wherein you will get how to get the Path.The Link is as follows:-Imp Link.

Upvotes: 1

Related Questions