Mehdzor
Mehdzor

Reputation: 799

How to record Audio and Video at Mac separately?

I'm building application that needs to send recorded audio and video data to net separately. Currently I'm using QTKit to capture media but it only allows to work with video and audio data combined.
Is there any way or frameworks that allows to work with video and audio apart?

Upvotes: 1

Views: 725

Answers (2)

NewStack
NewStack

Reputation: 990

AVFoundation framework also support for recording audio and video. refer this sample code

AVRecorder

but this framework only support for OS X v10.7 or later

Upvotes: 1

Joshua Nozzi
Joshua Nozzi

Reputation: 61228

I'm using QTKit to capture media but it only allows to work with video and audio data combined.

False.

You can add multiple inputs and outputs to your capture session with QTKit. They don't have to combine the A/V. Start here and read the entire document, then post another question if you have trouble.

Upvotes: 2

Related Questions