We're using MediaRecorder to record video to a file on the external storage using setOutputFile() before doing the actual recording.

Everything works fine, but the main issue is that as soon as the recording is done, we want to start playing the recorded video back in a VideoView.

How to know when the file is ready to be read and played back?

Thanks.

link|improve this question
feedback

6 Answers

up vote 1 down vote accepted
+50

The FileObserver class suits your needs perfectly. Here is the documentation. Its easy to use. When a observed file is closed after writing, the onEvent callback is called with CLOSE_WRITE as the parameter.

MyFileObserver fb = new MyFileObserver(mediaFile_path, FileObserver.CLOSE_WRITE);
fb.startWatching();

class MyFileObserver extends FileObserver {

    public MyFileObserver (String path, int mask) {
        super(path, mask);
    }

    public void onEvent(int event, String path) {
        // start playing
    }
}

Dont forget to call stopWatching()..

link|improve this answer
I'm not able to test this right now, but do you know if it's guaranteed that the MediaRecorder doesn't close the file between writes? – Stefan Hållén Sep 24 '11 at 12:03
Not aware of that. But even if it does, you can maintain the recording state in a member and check on it in onEvent. If recording is paused, just ignore the event. – userSeven7s Sep 24 '11 at 12:28
True. I think this seems to be the best solution, thank you! – Stefan Hållén Sep 24 '11 at 12:39
feedback

We solved similar problem with the following algo:

while (file not complete)
    sleep for 1 sec
    read the fourth byte of the file
    if it is not 0 (contains 'f' of the 'ftyp' header) then
        file is complete, break

The key point is that MediaRecorder writes the ftyp box at the very last moment. If it is in place, then the file is complete.

link|improve this answer
This is promising! Will have a go at this, thanks. – Stefan Hållén Sep 20 '11 at 8:45
feedback

I haven't tried this myself but this might work:

public void release () Since: API Level 1

Releases resources associated with this MediaRecorder object. It is good practice to call this method when you're done using the MediaRecorder.

If it does what it says, then I guess if you call this and after this method returns you know the file is ready.

link|improve this answer
Really? I thought that was just for releasing resources and letting the GC deal with them, also, we record many clips so reconstructing the MediaRecorder each time would probably hurt performance for us. I'll investigate it further though, thanks! – Stefan Hållén Sep 20 '11 at 8:45
feedback

Apparently there is no way to detect when the recording has stopped in Media player, but there is a stop() that you can override if you create a custom class that implements MediaRecorder. here I would do something like this:

public class MyRecorder implements MediaRecorder {
    public boolean stopped;

    .... implement all the methods that MediaRecorder has making 
         sure to call super for each method.

    @Override
    public void myStop() {
        this.stopped = true;
        super.stop(); 
    }
}

Then you can access the boolean to see if it has stopped recording.

link|improve this answer
But when the recording is stopped, more data has to get written to the storage and we can't start playing the video until the recording really has gotten written to storage. – Stefan Hållén Sep 15 '11 at 7:33
What has to get written? If its custom what you are writing then call your custom function from inside the overridden stop method then set the stopped variable after your call. – JPM Sep 15 '11 at 14:57
I know when we stop the recording. When the recording gets stopped, the recorder writes data to disk and I want to know when it has finished writing data :) – Stefan Hållén Sep 16 '11 at 9:05
feedback

A dirty way would be to check the lastModified() value of the File and open the VideoView if the File wasn't modified for 2 seconds.

link|improve this answer
We've already got hacks in place, but I'd prefer a proper solution if there is one. If there's none, well, then we'll just keep using our hack and add some error safeguarding to it :) – Stefan Hållén Sep 18 '11 at 10:53
feedback

first get the total bytes of the stream by appending data, once get finish compare both totalbytes and files's bytes if equals then done else not saved fully

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.