I'm reading Apple's documentation on using QTKit to capture streaming audio and video from input sources. I read that the central class QTCaptureSession
handles the input and sends it to every possible output (QTCaptureOutput
). The documentation lists six subclasses of QTCaptureOutput
(e.g., QTCaptureMovieFileOutput
).
I would like to create a subclass of QTCaptureOutput
to write to an NSSocket
so I could send the video stream over to another machine.
Any ideas would be appreciated.