Android Media Recorder Stop Exception
I am recording both video and audio from the android media recorder... I am checking the clip length, if less then 2 sec, delete it... But the problem is if i check the duration of
Solution 1:
I fixed the issue,
The problem was the way i was getting the duration, from MediaPlayer
Instead i used this code and it was fixed...
//////////////// Check Length and Delete File
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(prRecordedFile.getPath());
String time = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
long timeInmillisec = Long.parseLong(time);
Post a Comment for "Android Media Recorder Stop Exception"