Question

I am developing an audio recording application using MediaRecorder class. I have the following requirement:

1.When a pause button is pressed then pause recording.

2.When a resume button is pressed then resume recording where it paused. I try this link

But I am unable to implement the functionality.

Any help/suggestion would be greatly appreciated.

Was it helpful?

OTHER TIPS

This link also may useful for those who need to pause and record audio.

https://github.com/lassana/continuous-audiorecorder

You can refer my answer here if still have this issue.

The solution is to stop recorder when user pause and start again on resume as already mentioned in many other answers in stackoverflow. Store all the audio/video files generated in an array and use below method to merge all media files. The example is taken from mp4parser library and modified little bit as per my need.

public static boolean mergeMediaFiles(boolean isAudio, String sourceFiles[], String targetFile) {
        try {
            String mediaKey = isAudio ? "soun" : "vide";
            List<Movie> listMovies = new ArrayList<>();
            for (String filename : sourceFiles) {
                listMovies.add(MovieCreator.build(filename));
            }
            List<Track> listTracks = new LinkedList<>();
            for (Movie movie : listMovies) {
                for (Track track : movie.getTracks()) {
                    if (track.getHandler().equals(mediaKey)) {
                        listTracks.add(track);
                    }
                }
            }
            Movie outputMovie = new Movie();
            if (!listTracks.isEmpty()) {
                outputMovie.addTrack(new AppendTrack(listTracks.toArray(new Track[listTracks.size()])));
            }
            Container container = new DefaultMp4Builder().build(outputMovie);
            FileChannel fileChannel = new RandomAccessFile(String.format(targetFile), "rw").getChannel();
            container.writeContainer(fileChannel);
            fileChannel.close();
            return true;
        }
        catch (IOException e) {
            Log.e(LOG_TAG, "Error merging media files. exception: "+e.getMessage());
            return false;
        }
    }

Use flag isAudio as true for Audio files and false for Video files.

for pause the mediarecorder
         my_rec.pause();
         im_pouse.setImageResource(R.drawable.ic_play_arrow_black_24dp);

    for resume the mediarecorder
         my_rec.resume();
         im_pouse.setImageResource(R.drawable.ic_pause_black_24dp);

Hope it works.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top