As in the current iOS SDK there is no way to get compressed frames from video, how could we implement live streaming like skype did? The only way I see now is:

  1. obtain uncompressed frames from AVCaptureVideoDataOutput
  2. compress these frames using third-party library
  3. send frames to server

Are there any other ways to accomplish this task? What libraries can be used for compression and are they compatible with appstore? Thanks in advance

link|improve this question

80% accept rate
Found some information about this, see another [topic][1] [1]: stackoverflow.com/questions/7979842/… – peetonn Nov 12 '11 at 13:25
feedback

1 Answer

I'm struggling with this, too. The ffmpeg library seems like it works for compression, but the licensing means you have to release your source code.

You can set your object as a delegate from AVCaptureVideoDataOutput and implement this callback on a dispatch queue:

  • (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection;

Then you'll get the uncompressed video which you can process into a uiimage or jpeg (Apple has code samples for this), but there's no way to get the hardware compressed H264 frames, which is what we really want. This is where you could implement a library like ffmpeg to compress the video into H264 or whatever.

Currently, I'm trying to see if I can interpret the AVAssetWriter file output and redirect that to a stream (it can write hardware-compressed video), but Apple seems to be making this hard for some reason.

Let me know if you find something that works.

link|improve this answer
hey, check another my thread here stackoverflow.com/questions/7979842/…. i've found foxit solutions library implementing hardware encoding. – peetonn Nov 30 '11 at 0:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.