Manikandan
Manikandan

Reputation: 1519

Is there pause available in mediarecorder class

Is there a way to pause the recording and start after a while.

Upvotes: 2

Views: 2412

Answers (2)

John Leehey
John Leehey

Reputation: 22240

There is no pause() functionality when recording media. I would try conjoining two separate audio files together once the user hits your "stop" button in the app. Either that, or try to find a way to write to the same file stream after using the stop() method.

Upvotes: 2

mgv
mgv

Reputation: 8484

Short answer: no

Once you are recording the only possible actions are stop and reset.

Upvotes: 3

Related Questions