Reputation: 799
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
Reputation: 990
AVFoundation framework also support for recording audio and video. refer this sample code
but this framework only support for OS X v10.7 or later
Upvotes: 1
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