Reputation: 5935
I am developing an android application where i want to record the video placed in sd card of android application,How can i do this,,,
Thanks in advance Tushar
Upvotes: 0
Views: 121
Reputation: 439
Exists a topic in android developer describing about this. Don´t forgot to verify if the SD card is mounted. You can do that using the algoritm below:
if (android.os.Environment.getExternalStorageState() == android.os.Environment.MEDIA_MOUNTED) {
//TODO Your code here.
}
http://developer.android.com/guide/topics/media/camera.html#saving-media
Upvotes: 1