Ashish Balhara
Ashish Balhara

Reputation: 63

iOS Replaykit Screen Recording with Custom Video Setting (resolution, bitrate etc.)

I'm using Replaykit framework to capture screen in iOS 14 app, xcode 12. I need to provide custom setting (screen resolution, bitrate etc) to store the recorded video. is there way to do that?

Upvotes: 0

Views: 816

Answers (1)

Ilya  Lyaschenko
Ilya Lyaschenko

Reputation: 41

There is no way to provide any settings for the ScreenCapturing. You should work with those data returned by the system. It's not difficult:

  • for video processing, you may use CAImage or Metal
  • for audio proccessing - AVAudioPCMBuffer and AVAudioConverter

Upvotes: 0

Related Questions