GPUImage icon indicating copy to clipboard operation
GPUImage copied to clipboard

No audio/sound recording after pause and resume

Open oney opened this issue 5 years ago • 0 comments

class MyViewController: CameraBaseViewController {
  var writer: GPUImageMovieWriter
  override func pauseRecording() {
    writer.isPaused = true
  }
    
  override func resumeRecording() {
    writer.isPaused = false
  }
}

Recording video and audio is fine if no pause. However, if I pause and then resume, the audio disappears, but the video is fine. Can someone help? Thanks!

oney avatar Nov 12 '18 08:11 oney