iOS platform video hard decoding, support h264, h265
Using VideoDecoder requires you to handle threads yourself
To run the example project, clone the repo, and run pod install
from the Example directory first.
h264:
//Initialize the decoder instance and assign it a delegate to receive the decoded data
//callbacks
let decoder = H264Decoder(delegate: self)
//Initialize the videoPacket instance of h264 encode data
decoder.decodeOnePacket(videoPacket)
h265:
//Initialize the decoder instance and assign it a delegate to receive the decoded data
//callbacks
let decoder = H265Decoder(delegate: self)
//Initialize the videoPacket instance of h265 encode data
decoder.decodeOnePacket(videoPacket)
VideoPacket:
//Initialize the videoPacket instance functions
init(_ data: NSData, fps: Int, isIFrame: Bool = false, type: EncodeType, videoSize: CGSize)
init(_ data: Data, fps: Int, isIFrame: Bool = false, type: EncodeType, videoSize: CGSize)
init(_ data: [UInt8], fps: Int, isIFrame: Bool = false, type: EncodeType, videoSize: CGSize)
init(_ buffer: UnsafePointer<UInt8>, bufferSize: Int, fps: Int, isIFrame: Bool = false, type: EncodeType, videoSize: CGSize)
iOS
11.0+ Swift5.0+
pod 'VideoDecoder'
github "songbihai/VideoDecoder"
If VideoDecoder helps you in the development, if you need technical support or you need custom features, you can reward me.
VideoDecoder is available under the MIT license. See the LICENSE file for more info.