AVFoundation框架解析(十)—— AVFoundation的变化(二)

版本记录

版本号 时间
V1.0 2017.09.01

前言

AVFoundation框架是ios中很重要的框架,所有与视频音频相关的软硬件控制都在这个框架里面,接下来这几篇就主要对这个框架进行介绍和讲解。感兴趣的可以看我上几篇。
1. AVFoundation框架解析(一)—— 基本概览
2. AVFoundation框架解析(二)—— 实现视频预览录制保存到相册
3. AVFoundation框架解析(三)—— 几个关键问题之关于框架的深度概括
4. AVFoundation框架解析(四)—— 几个关键问题之AVFoundation探索(一)
5. AVFoundation框架解析(五)—— 几个关键问题之AVFoundation探索(二)
6. AVFoundation框架解析(六)—— 视频音频的合成(一)
7. AVFoundation框架解析(七)—— 视频组合和音频混合调试
8. AVFoundation框架解析(八)—— 优化用户的播放体验
9. AVFoundation框架解析(九)—— AVFoundation的变化(一)

AVFoundation的变化

我写这篇文章的时候是2017-09-01,文档中列出了AVFoundation框架的更新和改变,下面我就给大家列出来一下。


AVCaptureOutput.h

Added AVCaptureAudioDataOutput
Added AVCaptureAudioDataOutput.audioSettings
Added AVCaptureAudioDataOutput.sampleBufferCallbackQueue
Added AVCaptureAudioDataOutput.sampleBufferDelegate
Added -[AVCaptureAudioDataOutput setSampleBufferDelegate:queue:]
Added AVCaptureAudioDataOutputSampleBufferDelegate
Added -[AVCaptureAudioDataOutputSampleBufferDelegate captureOutput:didOutputSampleBuffer:fromConnection:]
Added AVCaptureAudioFileOutput
Added AVCaptureAudioFileOutput.audioSettings
Added +[AVCaptureAudioFileOutput availableOutputFileTypes]
Added AVCaptureAudioFileOutput.metadata
Added -[AVCaptureAudioFileOutput startRecordingToOutputFileURL:outputFileType:recordingDelegate:]
Added AVCaptureAudioPreviewOutput
Added AVCaptureAudioPreviewOutput.outputDeviceUniqueID
Added AVCaptureAudioPreviewOutput.volume
Added AVCaptureFileOutput
Added AVCaptureFileOutput.delegate
Added AVCaptureFileOutput.maxRecordedDuration
Added AVCaptureFileOutput.maxRecordedFileSize
Added AVCaptureFileOutput.minFreeDiskSpaceLimit
Added AVCaptureFileOutput.outputFileURL
Added -[AVCaptureFileOutput pauseRecording]
Added AVCaptureFileOutput.recordedDuration
Added AVCaptureFileOutput.recordedFileSize
Added AVCaptureFileOutput.recording
Added AVCaptureFileOutput.recordingPaused
Added -[AVCaptureFileOutput resumeRecording]
Added -[AVCaptureFileOutput startRecordingToOutputFileURL:recordingDelegate:]
Added -[AVCaptureFileOutput stopRecording]
Added AVCaptureFileOutputDelegate
Added -[AVCaptureFileOutputDelegate captureOutput:didOutputSampleBuffer:fromConnection:]
Added AVCaptureFileOutputRecordingDelegate
Added -[AVCaptureFileOutputRecordingDelegate captureOutput:didFinishRecordingToOutputFileAtURL:fromConnections:error:]
Added -[AVCaptureFileOutputRecordingDelegate captureOutput:didPauseRecordingToOutputFileAtURL:fromConnections:]
Added -[AVCaptureFileOutputRecordingDelegate captureOutput:didResumeRecordingToOutputFileAtURL:fromConnections:]
Added -[AVCaptureFileOutputRecordingDelegate captureOutput:didStartRecordingToOutputFileAtURL:fromConnections:]
Added -[AVCaptureFileOutputRecordingDelegate captureOutput:willFinishRecordingToOutputFileAtURL:fromConnections:error:]
Added AVCaptureMovieFileOutput
Added AVCaptureMovieFileOutput.metadata
Added AVCaptureMovieFileOutput.movieFragmentInterval
Added -[AVCaptureMovieFileOutput outputSettingsForConnection:]
Added -[AVCaptureMovieFileOutput setOutputSettings:forConnection:]
Added AVCaptureOutput
Added -[AVCaptureOutput connectionWithMediaType:]
Added AVCaptureOutput.connections
Added AVCaptureStillImageOutput
AddedAVCaptureStillImageOutput.availableImageDataCVPixelFormatTypes
Added AVCaptureStillImageOutput.availableImageDataCodecTypes
Added -[AVCaptureStillImageOutput captureStillImageAsynchronouslyFromConnection:completionHandler:]
Added +[AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:]
Added AVCaptureStillImageOutput.outputSettings
Added AVCaptureVideoDataOutput
Added AVCaptureVideoDataOutput.alwaysDiscardsLateVideoFrames
Added AVCaptureVideoDataOutput.availableVideoCVPixelFormatTypes
Added AVCaptureVideoDataOutput.availableVideoCodecTypes
Added AVCaptureVideoDataOutput.sampleBufferCallbackQueue
Added AVCaptureVideoDataOutput.sampleBufferDelegate
Added -[AVCaptureVideoDataOutput setSampleBufferDelegate:queue:]
Added AVCaptureVideoDataOutput.videoSettings
Added AVCaptureVideoDataOutputSampleBufferDelegate
Added -[AVCaptureVideoDataOutputSampleBufferDelegate captureOutput:didDropSampleBuffer:fromConnection:]
Added -[AVCaptureVideoDataOutputSampleBufferDelegate captureOutput:didOutputSampleBuffer:fromConnection:]


AVCaptureSession.h

Added AVCaptureAudioChannel
Added AVCaptureAudioChannel.averagePowerLevel
Added AVCaptureAudioChannel.enabled
Added AVCaptureAudioChannel.peakHoldLevel
Added AVCaptureAudioChannel.volume
Added AVCaptureConnection
Added AVCaptureConnection.active
Added AVCaptureConnection.audioChannels
Added AVCaptureConnection.automaticallyAdjustsVideoMirroring
Added +[AVCaptureConnection connectionWithInputPort:videoPreviewLayer:]
Added +[AVCaptureConnection connectionWithInputPorts:output:]
Added AVCaptureConnection.enabled
Added -[AVCaptureConnection initWithInputPort:videoPreviewLayer:]
Added -[AVCaptureConnection initWithInputPorts:output:]
Added AVCaptureConnection.inputPorts
Added AVCaptureConnection.output
Added AVCaptureConnection.supportsVideoFieldMode
Added AVCaptureConnection.supportsVideoMinFrameDuration
Added AVCaptureConnection.supportsVideoMirroring
Added AVCaptureConnection.supportsVideoOrientation
Added AVCaptureConnection.videoFieldMode
Added AVCaptureConnection.videoMinFrameDuration
Added AVCaptureConnection.videoMirrored
Added AVCaptureConnection.videoOrientation
Added AVCaptureConnection.videoPreviewLayer
Added AVCaptureSession
Added -[AVCaptureSession addConnection:]
Added -[AVCaptureSession addInput:]
Added -[AVCaptureSession addInputWithNoConnections:]
Added -[AVCaptureSession addOutput:]
Added -[AVCaptureSession addOutputWithNoConnections:]
Added -[AVCaptureSession beginConfiguration]
Added -[AVCaptureSession canAddConnection:]
Added -[AVCaptureSession canAddInput:]
Added -[AVCaptureSession canAddOutput:]
Added -[AVCaptureSession canSetSessionPreset:]
Added -[AVCaptureSession commitConfiguration]
Added AVCaptureSession.inputs
Added AVCaptureSession.outputs
Added -[AVCaptureSession removeConnection:]
Added -[AVCaptureSession removeInput:]
Added -[AVCaptureSession removeOutput:]
Added AVCaptureSession.running
Added AVCaptureSession.sessionPreset
Added -[AVCaptureSession startRunning]
Added -[AVCaptureSession stopRunning]
Added AVCaptureSessionDidStartRunningNotification
Added AVCaptureSessionDidStopRunningNotification
Added AVCaptureSessionErrorKey
Added AVCaptureSessionPreset1280x720
Added AVCaptureSessionPreset320x240
Added AVCaptureSessionPreset352x288
Added AVCaptureSessionPreset640x480
Added AVCaptureSessionPreset960x540
Added AVCaptureSessionPresetHigh
Added AVCaptureSessionPresetLow
Added AVCaptureSessionPresetMedium
Added AVCaptureSessionPresetPhoto
Added AVCaptureSessionRuntimeErrorNotification
Added AVCaptureVideoOrientation
Added AVCaptureVideoOrientationLandscapeLeft
Added AVCaptureVideoOrientationLandscapeRight
Added AVCaptureVideoOrientationPortrait
Added AVCaptureVideoOrientationPortraitUpsideDown
Added AVVideoFieldMode
Added AVVideoFieldModeBoth
Added AVVideoFieldModeBottomOnly
Added AVVideoFieldModeDeinterlace
Added AVVideoFieldModeTopOnly


AVCaptureVideoPreviewLayer.h

Added AVCaptureVideoPreviewLayer
Added AVCaptureVideoPreviewLayer.connection
Added -[AVCaptureVideoPreviewLayer initWithSession:]
Added -[AVCaptureVideoPreviewLayer initWithSessionWithNoConnection:]
Added +[AVCaptureVideoPreviewLayer layerWithSession:]
Added +[AVCaptureVideoPreviewLayer layerWithSessionWithNoConnection:]
Added AVCaptureVideoPreviewLayer.session
Added -[AVCaptureVideoPreviewLayer setSessionWithNoConnection:]
Added AVCaptureVideoPreviewLayer.videoGravity


AVComposition.h

Added AVComposition
Added AVComposition.tracks
Added AVMutableComposition
Added -[AVMutableComposition addMutableTrackWithMediaType:preferredTrackID:]
Added +[AVMutableComposition composition]
Added -[AVMutableComposition insertEmptyTimeRange:]
Added -[AVMutableComposition insertTimeRange:ofAsset:atTime:error:]
Added -[AVMutableComposition mutableTrackCompatibleWithTrack:]
Added AVMutableComposition.naturalSize
Added -[AVMutableComposition removeTimeRange:]
Added -[AVMutableComposition removeTrack:]
Added -[AVMutableComposition scaleTimeRange:toDuration:]
Added AVMutableComposition.tracks
AddedAVMutableComposition(AVMutableCompositionCompositionLevelEditing)
Added AVMutableComposition(AVMutableCompositionTrackLevelEditing)


AVCompositionTrack.h

Added AVCompositionTrack
Added AVCompositionTrack.segments
Added AVMutableCompositionTrack
Added AVMutableCompositionTrack.extendedLanguageTag
Added -[AVMutableCompositionTrack insertEmptyTimeRange:]
Added -[AVMutableCompositionTrack insertTimeRange:ofTrack:atTime:error:]
Added AVMutableCompositionTrack.languageCode
Added AVMutableCompositionTrack.naturalTimeScale
Added AVMutableCompositionTrack.preferredTransform
Added AVMutableCompositionTrack.preferredVolume
Added -[AVMutableCompositionTrack removeTimeRange:]
Added -[AVMutableCompositionTrack scaleTimeRange:toDuration:]
Added AVMutableCompositionTrack.segments
Added -[AVMutableCompositionTrack validateTrackSegments:error:]


AVCompositionTrackSegment.h

Added AVCompositionTrackSegment
Added +[AVCompositionTrackSegment compositionTrackSegmentWithTimeRange:]
Added +[AVCompositionTrackSegment compositionTrackSegmentWithURL:trackID:sourceTimeRange:targetTimeRange:]
Added AVCompositionTrackSegment.empty
Added -[AVCompositionTrackSegment initWithTimeRange:]
Added -[AVCompositionTrackSegment initWithURL:trackID:sourceTimeRange:targetTimeRange:]
Added AVCompositionTrackSegment.sourceTrackID
Added AVCompositionTrackSegment.sourceURL


AVError.h

Added AVErrorApplicationIsNotAuthorized
Added AVErrorCompositionTrackSegmentsNotContiguous
Added AVErrorContentIsNotAuthorized
Added AVErrorContentIsProtected
Added AVErrorDecodeFailed
Added AVErrorDecoderNotFound
Added AVErrorDeviceAlreadyUsedByAnotherSession
Added AVErrorDeviceInUseByAnotherApplication
Added AVErrorDeviceIsNotAvailableInBackground (no architecture available)
Added AVErrorDeviceKey
Added AVErrorDeviceLockedForConfigurationByAnotherProcess
Added AVErrorDeviceNotConnected
Added AVErrorDeviceWasDisconnected
Added AVErrorDiscontinuityFlagsKey
Added AVErrorDiskFull
Added AVErrorEncoderNotFound
Added AVErrorExportFailed
Added AVErrorFileAlreadyExists
Added AVErrorFileFailedToParse
Added AVErrorFileFormatNotRecognized
Added AVErrorFileSizeKey
Added AVErrorInvalidCompositionTrackSegmentDuration
Added AVErrorInvalidCompositionTrackSegmentSourceDuration
Added AVErrorInvalidCompositionTrackSegmentSourceStartTime
Added AVErrorInvalidSourceMedia
Added AVErrorMaximumDurationReached
Added AVErrorMaximumFileSizeReached
Added AVErrorMaximumNumberOfSamplesForFileFormatReached
Added AVErrorMaximumStillImageCaptureRequestsExceeded
Added AVErrorMediaChanged
Added AVErrorMediaDiscontinuity
Added AVErrorMediaServicesWereReset (no architecture available)
Added AVErrorMediaSubTypeKey
Added AVErrorMediaTypeKey
Added AVErrorNoDataCaptured
Added AVErrorNoImageAtTime
Added AVErrorOperationNotSupportedForAsset
Added AVErrorOutOfMemory
Added AVErrorPIDKey
Added AVErrorRecordingSuccessfullyFinishedKey
Added AVErrorSessionConfigurationChanged
Added AVErrorSessionNotRunning
Added AVErrorSessionWasInterrupted (no architecture available)
Added AVErrorTimeKey
Added AVErrorUnknown
Added AVFoundationErrorDomain


AVMediaFormat.h

Added AVFileTypeAIFC
Added AVFileTypeAIFF
Added AVFileTypeAMR
Added AVFileTypeAppleM4A
Added AVFileTypeAppleM4V
Added AVFileTypeCoreAudioFormat
Added AVFileTypeMPEG4
Added AVFileTypeQuickTimeMovie
Added AVFileTypeWAVE
Added AVMediaCharacteristicAudible
Added AVMediaCharacteristicFrameBased
Added AVMediaCharacteristicLegible
Added AVMediaCharacteristicVisual
Added AVMediaTypeAudio
Added AVMediaTypeClosedCaption
Added AVMediaTypeMuxed
Added AVMediaTypeSubtitle
Added AVMediaTypeText
Added AVMediaTypeTimecode
Added AVMediaTypeTimedMetadata
Added AVMediaTypeVideo

后记

未完,待续~~~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容