美文网首页
直播获取数据

直播获取数据

作者: smallSun15 | 来源:发表于2017-07-10 16:08 被阅读0次

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

    {

    if (_videoConnection == connection) {

    NSLog(@"采集到视频数据");

    } else {

    NSLog(@"采集到音频数据");

    }

    }

    sampleBuffer ——>(视频)yuv420——>h264编码

    sampleBuffer——>(音频)pcm——>aac编码

    数据合成:flv格式 = h264 + aac

    相关文章

      网友评论

          本文标题:直播获取数据

          本文链接:https://www.haomeiwen.com/subject/irfuhxtx.html