-
-
Notifications
You must be signed in to change notification settings - Fork 620
Moving from 1.5.5 APIs to 1.6.x
shogo4405 edited this page Sep 17, 2023
·
3 revisions
I have switched development to Xcode 15. Consequently, the supported iOS and tvOS versions will be 12.0 and later.
open class RTMPStream:: AnyObject {
open func createMetaData() -> ASObject
}
open class RTMPStream:: AnyObject {
open func makeMetaData() -> ASObject
}
struct VideoCodecSettings: Codable {
/// Specifies the video size of encoding video.
public var videoSize: VideoSize
}
struct VideoCodecSettings: Codable {
/// Specifies the video size of encoding video.
public var videoSize: CGSize
}
public class IOUIScreenCaptureUnit: NSObject, IOScreenCaptureUnit {
public var frameInterval: Int = IOUIScreenCaptureUnit.defaultFrameInterval
}
public class IOUIScreenCaptureUnit: NSObject, IOScreenCaptureUnit {
public var preferredFramesPerSecond: Int = IOUIScreenCaptureUnit.defaultPreferredFramesPerSecond
}
HaishinKit.swift | 🇬🇧 HaishinKit.kt | 🇯🇵 Zenn