In my app, I am capturing media as frames using
- (void)captureOutput:(AVCaptureOutput *)captureOutput
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer
fromConnection:(AVCaptureConnection *)connection
delegate, I have recorded and played the recorded file using MPMoviePlayerController. Now my question is, I want to write those buffer into a socket and send to server instead of writing into a file. What kind of changes do I need to make?
thanks for your helps.