diff --git a/Examples/iOS/IngestViewController.swift b/Examples/iOS/IngestViewController.swift index 0bc39d647..5a66a45b6 100644 --- a/Examples/iOS/IngestViewController.swift +++ b/Examples/iOS/IngestViewController.swift @@ -44,7 +44,7 @@ final class IngestViewController: UIViewController { pipIntentView.isUserInteractionEnabled = true view.addSubview(pipIntentView) - // If you're using multi-camera functionality, please make sure isMultiCamSessionEnabled = true. Initialization point. + // If you want to use the multi-camera feature, please make sure stream.isMultiCamSessionEnabled = true. Before attachCamera or attachAudio. stream.isMultiCamSessionEnabled = true if let orientation = DeviceUtil.videoOrientation(by: UIApplication.shared.statusBarOrientation) { stream.videoOrientation = orientation diff --git a/HaishinKit.podspec b/HaishinKit.podspec index 04acae68f..7572bf18b 100644 --- a/HaishinKit.podspec +++ b/HaishinKit.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "HaishinKit" - s.version = "1.7.1" + s.version = "1.7.2" s.summary = "Camera and Microphone streaming library via RTMP and SRT for iOS, macOS, tvOS and visionOS." s.swift_version = "5.9" diff --git a/HaishinKit.xcodeproj/project.pbxproj b/HaishinKit.xcodeproj/project.pbxproj index ad121e467..f4a5a52d2 100644 --- a/HaishinKit.xcodeproj/project.pbxproj +++ b/HaishinKit.xcodeproj/project.pbxproj @@ -2342,7 +2342,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 1.7.1; + MARKETING_VERSION = 1.7.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11"; ONLY_ACTIVE_ARCH = YES; @@ -2388,7 +2388,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.13; - MARKETING_VERSION = 1.7.1; + MARKETING_VERSION = 1.7.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11"; ONLY_ACTIVE_ARCH = NO; @@ -2773,7 +2773,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.7.1; + MARKETING_VERSION = 1.7.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; @@ -2827,7 +2827,7 @@ "@loader_path/Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.7.1; + MARKETING_VERSION = 1.7.2; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; MTL_FAST_MATH = YES; diff --git a/README.md b/README.md index 03125cbce..cb4091aff 100644 --- a/README.md +++ b/README.md @@ -74,13 +74,15 @@ Supports two camera video sources. A picture-in-picture display that shows the i ||| ```swift -// If you're using multi-camera functionality, please make sure to call the attachMultiCamera method first. This is required for iOS 14 and 15, among others. +// If you want to use the multi-camera feature, please make sure stream.isMultiCamSessionEnabled = true. Before attachCamera or attachAudio. +stream.isMultiCamSessionEnabled = true + +let back = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back) +stream.attachCamera(back) if #available(iOS 13.0, *) { let front = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .front) stream.attachMultiCamera(front) } -let back = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back) -stream.attachCamera(back) rtmpStream.attachAudio(AVCaptureDevice.default(for: .audio)) ``` @@ -254,9 +256,11 @@ stream.frameRate = 30 stream.sessionPreset = AVCaptureSession.Preset.medium /// Specifies the video capture settings. -stream.videoCapture(for: 0).isVideoMirrored = false -stream.videoCapture(for: 0).preferredVideoStabilizationMode = .auto -// stream.videoCapture(for: 0).isVideoMirrored = false +stream.videoCapture(for: 0).map { + // $0.isVideoMirrored = true + $0.preferredVideoStabilizationMode = .standard + // $0.colorFormat = kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange +} ``` ### 🔊 [AudioCodecSettings](https://shogo4405.github.io/HaishinKit.swift/Structs/AudioCodecSettings.html) diff --git a/docs/Classes.html b/docs/Classes.html index 7f6b04b78..bcb6273e6 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -319,64 +316,6 @@ Classes - - - - - - TSReader - - - - - - - - The TSReader class represents read MPEG-2 transport stream data. - - See more - - - Declaration - - Swift - public class TSReader - - - - - - - - - - - - TSWriter - - - - - - - - The TSWriter class represents writes MPEG-2 transport stream data. - - See more - - - Declaration - - Swift - public final class TSWriter -extension TSWriter: IOMuxer -extension TSWriter: Running - - - - - - @@ -455,7 +394,7 @@ Declaration Swift @available(tvOS 17.0, *) -public class IOVideoCaptureUnit : IOCaptureUnit +public final class IOVideoCaptureUnit : IOCaptureUnit @@ -596,6 +535,64 @@ Declaration + + + + + + TSReader + + + + + + + + The TSReader class represents read MPEG-2 transport stream data. + + See more + + + Declaration + + Swift + public class TSReader + + + + + + + + + + + + TSWriter + + + + + + + + The TSWriter class represents writes MPEG-2 transport stream data. + + See more + + + Declaration + + Swift + public final class TSWriter +extension TSWriter: IOMuxer +extension TSWriter: Running + + + + + + @@ -1088,7 +1085,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ByteArray.html b/docs/Classes/ByteArray.html index 8fa7cb13f..dbcd89609 100644 --- a/docs/Classes/ByteArray.html +++ b/docs/Classes/ByteArray.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1248,7 +1245,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ByteArray/Error.html b/docs/Classes/ByteArray/Error.html index 34b8f4766..6063acc16 100644 --- a/docs/Classes/ByteArray/Error.html +++ b/docs/Classes/ByteArray/Error.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Event.html b/docs/Classes/Event.html index 71bf73cc1..8e2efdf49 100644 --- a/docs/Classes/Event.html +++ b/docs/Classes/Event.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -561,7 +558,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Event/Name.html b/docs/Classes/Event/Name.html index b86ff4ffb..7fca5e871 100644 --- a/docs/Classes/Event/Name.html +++ b/docs/Classes/Event/Name.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -571,7 +568,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/EventDispatcher.html b/docs/Classes/EventDispatcher.html index 289fb1053..b8e05bb58 100644 --- a/docs/Classes/EventDispatcher.html +++ b/docs/Classes/EventDispatcher.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IORecorder.html b/docs/Classes/IORecorder.html index a06041794..0a9fb8795 100644 --- a/docs/Classes/IORecorder.html +++ b/docs/Classes/IORecorder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -587,7 +584,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IORecorder/Error.html b/docs/Classes/IORecorder/Error.html index b7d411488..106b4723e 100644 --- a/docs/Classes/IORecorder/Error.html +++ b/docs/Classes/IORecorder/Error.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IOUIScreenCaptureUnit.html b/docs/Classes/IOUIScreenCaptureUnit.html index 5b75f753f..4a3364c46 100644 --- a/docs/Classes/IOUIScreenCaptureUnit.html +++ b/docs/Classes/IOUIScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -547,7 +544,7 @@ Running - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IOVideoCaptureUnit.html b/docs/Classes/IOVideoCaptureUnit.html index 4322c3b60..cfc85269c 100644 --- a/docs/Classes/IOVideoCaptureUnit.html +++ b/docs/Classes/IOVideoCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -317,7 +314,7 @@ IOVideoCaptureUnit @available(tvOS 17.0, *) -public class IOVideoCaptureUnit : IOCaptureUnit +public final class IOVideoCaptureUnit : IOCaptureUnit @@ -510,7 +507,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/InstanceHolder.html b/docs/Classes/InstanceHolder.html index 28165defb..4dad7500d 100644 --- a/docs/Classes/InstanceHolder.html +++ b/docs/Classes/InstanceHolder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -412,7 +409,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/MTHKView.html b/docs/Classes/MTHKView.html index e03e7df4e..6954984e1 100644 --- a/docs/Classes/MTHKView.html +++ b/docs/Classes/MTHKView.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -628,7 +625,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetBitRateStrategy.html b/docs/Classes/NetBitRateStrategy.html index 643d32d1d..df6035498 100644 --- a/docs/Classes/NetBitRateStrategy.html +++ b/docs/Classes/NetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -514,7 +511,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetClient.html b/docs/Classes/NetClient.html index cf9b33a7a..01bc7c842 100644 --- a/docs/Classes/NetClient.html +++ b/docs/Classes/NetClient.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -357,7 +354,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetService.html b/docs/Classes/NetService.html index 735879d9c..fb28a3d41 100644 --- a/docs/Classes/NetService.html +++ b/docs/Classes/NetService.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -654,7 +651,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetSocket.html b/docs/Classes/NetSocket.html index c86d5a040..4674fc436 100644 --- a/docs/Classes/NetSocket.html +++ b/docs/Classes/NetSocket.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -805,7 +802,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetStream.html b/docs/Classes/NetStream.html index 7318810f1..b36310c21 100644 --- a/docs/Classes/NetStream.html +++ b/docs/Classes/NetStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -857,7 +854,7 @@ Declaration - Specifies the delegate.. + Specifies the delegate. @@ -871,6 +868,33 @@ Declaration + + + + + + drawable + + + + + + + + Specifies the drawable. + + + + Declaration + + Swift + public var drawable: (any NetStreamDrawable)? { get set } + + + + + + @@ -1027,9 +1051,9 @@ Declaration - + - videoCapture(for:) + videoCapture(for:) @@ -1045,7 +1069,7 @@ Declaration Swift @available(tvOS 17.0, *) -public func videoCapture(for index: Int) -> IOVideoCaptureUnit? +public func videoCapture(for channel: UInt8) -> IOVideoCaptureUnit? @@ -1055,9 +1079,9 @@ Declaration - - - attachScreen(_:) + + + attachScreen(_:channel:) @@ -1072,7 +1096,7 @@ Declaration Declaration Swift - public func attachScreen(_ input: AVCaptureScreenInput?) + public func attachScreen(_ input: AVCaptureScreenInput?, channel: UInt8 = 0) @@ -1386,7 +1410,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetStream/ReadyState.html b/docs/Classes/NetStream/ReadyState.html index 2caf6ed53..884e080db 100644 --- a/docs/Classes/NetStream/ReadyState.html +++ b/docs/Classes/NetStream/ReadyState.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -546,7 +543,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/PiPHKView.html b/docs/Classes/PiPHKView.html index 5c7023884..d36c24d57 100644 --- a/docs/Classes/PiPHKView.html +++ b/docs/Classes/PiPHKView.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -586,7 +583,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection.html b/docs/Classes/RTMPConnection.html index 62d5082ea..fad3df2f6 100644 --- a/docs/Classes/RTMPConnection.html +++ b/docs/Classes/RTMPConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1179,7 +1176,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection/Code.html b/docs/Classes/RTMPConnection/Code.html index 20a948234..16121d45b 100644 --- a/docs/Classes/RTMPConnection/Code.html +++ b/docs/Classes/RTMPConnection/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -662,7 +659,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPResponder.html b/docs/Classes/RTMPResponder.html index 686e35b28..69bd43bb4 100644 --- a/docs/Classes/RTMPResponder.html +++ b/docs/Classes/RTMPResponder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPSharedObject.html b/docs/Classes/RTMPSharedObject.html index 84f9143dc..caaac2c87 100644 --- a/docs/Classes/RTMPSharedObject.html +++ b/docs/Classes/RTMPSharedObject.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -560,7 +557,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream.html b/docs/Classes/RTMPStream.html index a48340f3c..c18c852ce 100644 --- a/docs/Classes/RTMPStream.html +++ b/docs/Classes/RTMPStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -388,6 +385,33 @@ Declaration + + + + + + metadata + + + + + + + + The RTMPStream metadata. + + + + Declaration + + Swift + public internal(set) var metadata: [String : Any?] { get } + + + + + + @@ -401,7 +425,7 @@ Declaration - The NetStreamInfo object whose properties contain data. + The RTMPStreamInfo object whose properties contain data. @@ -442,6 +466,60 @@ Declaration + + + + + + audioSampleAccess + + + + + + + + The boolean value that indicates audio samples allow access or not. + + + + Declaration + + Swift + public internal(set) var audioSampleAccess: Bool { get } + + + + + + + + + + + + videoSampleAccess + + + + + + + + The boolean value that indicates video samples allow access or not. + + + + Declaration + + Swift + public internal(set) var videoSampleAccess: Bool { get } + + + + + + @@ -886,7 +964,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html index d0513e0c0..77197e939 100644 --- a/docs/Classes/RTMPStream/Code.html +++ b/docs/Classes/RTMPStream/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1416,7 +1413,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html index 4c2e17e96..dd139a891 100644 --- a/docs/Classes/RTMPStream/HowToPublish.html +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html index 622c553b8..86cbe134f 100644 --- a/docs/Classes/SRTConnection.html +++ b/docs/Classes/SRTConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -521,7 +518,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html index c6b37f667..f5f39e2d2 100644 --- a/docs/Classes/SRTLogger.html +++ b/docs/Classes/SRTLogger.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -411,7 +408,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html index c1211ea56..a954d8f86 100644 --- a/docs/Classes/SRTStream.html +++ b/docs/Classes/SRTStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -597,7 +594,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html index 138aec992..26edc077e 100644 --- a/docs/Classes/TSReader.html +++ b/docs/Classes/TSReader.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html index 43555bbc8..b005909b0 100644 --- a/docs/Classes/TSWriter.html +++ b/docs/Classes/TSWriter.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -732,7 +729,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html index d55833a19..73df1d1db 100644 --- a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -541,7 +538,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html index e11627ab8..2d34e49dc 100644 --- a/docs/Classes/VideoEffect.html +++ b/docs/Classes/VideoEffect.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -405,7 +402,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums.html b/docs/Enums.html index eab6df86d..18275ad55 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -593,7 +590,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html index 49b36c2cd..13499d457 100644 --- a/docs/Enums/DeviceUtil.html +++ b/docs/Enums/DeviceUtil.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html index f526835c9..d8902e9fa 100644 --- a/docs/Enums/IOAudioUnitError.html +++ b/docs/Enums/IOAudioUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html index fc14e20c1..ee1ae6407 100644 --- a/docs/Enums/IOVideoUnitError.html +++ b/docs/Enums/IOVideoUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html index 954db1558..d517055dc 100644 --- a/docs/Enums/ImageTransform.html +++ b/docs/Enums/ImageTransform.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html index 1caecc0a6..529babe0c 100644 --- a/docs/Enums/RTMPObjectEncoding.html +++ b/docs/Enums/RTMPObjectEncoding.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html index ea5b478ec..c36d9d6ab 100644 --- a/docs/Enums/SRTLogFunctionalArea.html +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1086,7 +1083,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html index 1b3709c97..0e4f7848f 100644 --- a/docs/Enums/SRTLogLevel.html +++ b/docs/Enums/SRTLogLevel.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -465,7 +462,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html index ea9730626..d0aa13a30 100644 --- a/docs/Enums/SRTMode.html +++ b/docs/Enums/SRTMode.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html index 75f0be0ab..32e6392a1 100644 --- a/docs/Enums/SRTSocketOption.html +++ b/docs/Enums/SRTSocketOption.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1500,7 +1497,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index d61177694..f4038cfc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -400,24 +397,6 @@ Declaration - - - - - - IOMixer - - - - - - - - - - - - @@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
HaishinKit 1.7.1 Docs (88% documented)
HaishinKit 1.7.2 Docs (88% documented)
- - - TSReader -
The TSReader class represents read MPEG-2 transport stream data.
Swift
public class TSReader
- - - TSWriter -
The TSWriter class represents writes MPEG-2 transport stream data.
public final class TSWriter
extension TSWriter: IOMuxer
extension TSWriter: Running
@@ -455,7 +394,7 @@ Declaration Swift @available(tvOS 17.0, *) -public class IOVideoCaptureUnit : IOCaptureUnit +public final class IOVideoCaptureUnit : IOCaptureUnit
@available(tvOS 17.0, *) -public class IOVideoCaptureUnit : IOCaptureUnit
+ + + TSReader +
+ + + TSWriter +
@@ -1088,7 +1085,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ByteArray.html b/docs/Classes/ByteArray.html index 8fa7cb13f..dbcd89609 100644 --- a/docs/Classes/ByteArray.html +++ b/docs/Classes/ByteArray.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1248,7 +1245,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/ByteArray/Error.html b/docs/Classes/ByteArray/Error.html index 34b8f4766..6063acc16 100644 --- a/docs/Classes/ByteArray/Error.html +++ b/docs/Classes/ByteArray/Error.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Event.html b/docs/Classes/Event.html index 71bf73cc1..8e2efdf49 100644 --- a/docs/Classes/Event.html +++ b/docs/Classes/Event.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -561,7 +558,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/Event/Name.html b/docs/Classes/Event/Name.html index b86ff4ffb..7fca5e871 100644 --- a/docs/Classes/Event/Name.html +++ b/docs/Classes/Event/Name.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -571,7 +568,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/EventDispatcher.html b/docs/Classes/EventDispatcher.html index 289fb1053..b8e05bb58 100644 --- a/docs/Classes/EventDispatcher.html +++ b/docs/Classes/EventDispatcher.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IORecorder.html b/docs/Classes/IORecorder.html index a06041794..0a9fb8795 100644 --- a/docs/Classes/IORecorder.html +++ b/docs/Classes/IORecorder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -587,7 +584,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IORecorder/Error.html b/docs/Classes/IORecorder/Error.html index b7d411488..106b4723e 100644 --- a/docs/Classes/IORecorder/Error.html +++ b/docs/Classes/IORecorder/Error.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IOUIScreenCaptureUnit.html b/docs/Classes/IOUIScreenCaptureUnit.html index 5b75f753f..4a3364c46 100644 --- a/docs/Classes/IOUIScreenCaptureUnit.html +++ b/docs/Classes/IOUIScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -547,7 +544,7 @@ Running - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/IOVideoCaptureUnit.html b/docs/Classes/IOVideoCaptureUnit.html index 4322c3b60..cfc85269c 100644 --- a/docs/Classes/IOVideoCaptureUnit.html +++ b/docs/Classes/IOVideoCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -317,7 +314,7 @@ IOVideoCaptureUnit @available(tvOS 17.0, *) -public class IOVideoCaptureUnit : IOCaptureUnit +public final class IOVideoCaptureUnit : IOCaptureUnit @@ -510,7 +507,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/InstanceHolder.html b/docs/Classes/InstanceHolder.html index 28165defb..4dad7500d 100644 --- a/docs/Classes/InstanceHolder.html +++ b/docs/Classes/InstanceHolder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -412,7 +409,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/MTHKView.html b/docs/Classes/MTHKView.html index e03e7df4e..6954984e1 100644 --- a/docs/Classes/MTHKView.html +++ b/docs/Classes/MTHKView.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -628,7 +625,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetBitRateStrategy.html b/docs/Classes/NetBitRateStrategy.html index 643d32d1d..df6035498 100644 --- a/docs/Classes/NetBitRateStrategy.html +++ b/docs/Classes/NetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -514,7 +511,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetClient.html b/docs/Classes/NetClient.html index cf9b33a7a..01bc7c842 100644 --- a/docs/Classes/NetClient.html +++ b/docs/Classes/NetClient.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -357,7 +354,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetService.html b/docs/Classes/NetService.html index 735879d9c..fb28a3d41 100644 --- a/docs/Classes/NetService.html +++ b/docs/Classes/NetService.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -654,7 +651,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetSocket.html b/docs/Classes/NetSocket.html index c86d5a040..4674fc436 100644 --- a/docs/Classes/NetSocket.html +++ b/docs/Classes/NetSocket.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -805,7 +802,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetStream.html b/docs/Classes/NetStream.html index 7318810f1..b36310c21 100644 --- a/docs/Classes/NetStream.html +++ b/docs/Classes/NetStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -857,7 +854,7 @@ Declaration - Specifies the delegate.. + Specifies the delegate. @@ -871,6 +868,33 @@ Declaration + + + + + + drawable + + + + + + + + Specifies the drawable. + + + + Declaration + + Swift + public var drawable: (any NetStreamDrawable)? { get set } + + + + + + @@ -1027,9 +1051,9 @@ Declaration - + - videoCapture(for:) + videoCapture(for:) @@ -1045,7 +1069,7 @@ Declaration Swift @available(tvOS 17.0, *) -public func videoCapture(for index: Int) -> IOVideoCaptureUnit? +public func videoCapture(for channel: UInt8) -> IOVideoCaptureUnit? @@ -1055,9 +1079,9 @@ Declaration - - - attachScreen(_:) + + + attachScreen(_:channel:) @@ -1072,7 +1096,7 @@ Declaration Declaration Swift - public func attachScreen(_ input: AVCaptureScreenInput?) + public func attachScreen(_ input: AVCaptureScreenInput?, channel: UInt8 = 0) @@ -1386,7 +1410,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetStream/ReadyState.html b/docs/Classes/NetStream/ReadyState.html index 2caf6ed53..884e080db 100644 --- a/docs/Classes/NetStream/ReadyState.html +++ b/docs/Classes/NetStream/ReadyState.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -546,7 +543,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/PiPHKView.html b/docs/Classes/PiPHKView.html index 5c7023884..d36c24d57 100644 --- a/docs/Classes/PiPHKView.html +++ b/docs/Classes/PiPHKView.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -586,7 +583,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection.html b/docs/Classes/RTMPConnection.html index 62d5082ea..fad3df2f6 100644 --- a/docs/Classes/RTMPConnection.html +++ b/docs/Classes/RTMPConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1179,7 +1176,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection/Code.html b/docs/Classes/RTMPConnection/Code.html index 20a948234..16121d45b 100644 --- a/docs/Classes/RTMPConnection/Code.html +++ b/docs/Classes/RTMPConnection/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -662,7 +659,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPResponder.html b/docs/Classes/RTMPResponder.html index 686e35b28..69bd43bb4 100644 --- a/docs/Classes/RTMPResponder.html +++ b/docs/Classes/RTMPResponder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPSharedObject.html b/docs/Classes/RTMPSharedObject.html index 84f9143dc..caaac2c87 100644 --- a/docs/Classes/RTMPSharedObject.html +++ b/docs/Classes/RTMPSharedObject.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -560,7 +557,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream.html b/docs/Classes/RTMPStream.html index a48340f3c..c18c852ce 100644 --- a/docs/Classes/RTMPStream.html +++ b/docs/Classes/RTMPStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -388,6 +385,33 @@ Declaration + + + + + + metadata + + + + + + + + The RTMPStream metadata. + + + + Declaration + + Swift + public internal(set) var metadata: [String : Any?] { get } + + + + + + @@ -401,7 +425,7 @@ Declaration - The NetStreamInfo object whose properties contain data. + The RTMPStreamInfo object whose properties contain data. @@ -442,6 +466,60 @@ Declaration + + + + + + audioSampleAccess + + + + + + + + The boolean value that indicates audio samples allow access or not. + + + + Declaration + + Swift + public internal(set) var audioSampleAccess: Bool { get } + + + + + + + + + + + + videoSampleAccess + + + + + + + + The boolean value that indicates video samples allow access or not. + + + + Declaration + + Swift + public internal(set) var videoSampleAccess: Bool { get } + + + + + + @@ -886,7 +964,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html index d0513e0c0..77197e939 100644 --- a/docs/Classes/RTMPStream/Code.html +++ b/docs/Classes/RTMPStream/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1416,7 +1413,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html index 4c2e17e96..dd139a891 100644 --- a/docs/Classes/RTMPStream/HowToPublish.html +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html index 622c553b8..86cbe134f 100644 --- a/docs/Classes/SRTConnection.html +++ b/docs/Classes/SRTConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -521,7 +518,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html index c6b37f667..f5f39e2d2 100644 --- a/docs/Classes/SRTLogger.html +++ b/docs/Classes/SRTLogger.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -411,7 +408,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html index c1211ea56..a954d8f86 100644 --- a/docs/Classes/SRTStream.html +++ b/docs/Classes/SRTStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -597,7 +594,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html index 138aec992..26edc077e 100644 --- a/docs/Classes/TSReader.html +++ b/docs/Classes/TSReader.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html index 43555bbc8..b005909b0 100644 --- a/docs/Classes/TSWriter.html +++ b/docs/Classes/TSWriter.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -732,7 +729,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html index d55833a19..73df1d1db 100644 --- a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -541,7 +538,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html index e11627ab8..2d34e49dc 100644 --- a/docs/Classes/VideoEffect.html +++ b/docs/Classes/VideoEffect.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -405,7 +402,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums.html b/docs/Enums.html index eab6df86d..18275ad55 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -593,7 +590,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html index 49b36c2cd..13499d457 100644 --- a/docs/Enums/DeviceUtil.html +++ b/docs/Enums/DeviceUtil.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html index f526835c9..d8902e9fa 100644 --- a/docs/Enums/IOAudioUnitError.html +++ b/docs/Enums/IOAudioUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html index fc14e20c1..ee1ae6407 100644 --- a/docs/Enums/IOVideoUnitError.html +++ b/docs/Enums/IOVideoUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html index 954db1558..d517055dc 100644 --- a/docs/Enums/ImageTransform.html +++ b/docs/Enums/ImageTransform.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html index 1caecc0a6..529babe0c 100644 --- a/docs/Enums/RTMPObjectEncoding.html +++ b/docs/Enums/RTMPObjectEncoding.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html index ea5b478ec..c36d9d6ab 100644 --- a/docs/Enums/SRTLogFunctionalArea.html +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1086,7 +1083,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html index 1b3709c97..0e4f7848f 100644 --- a/docs/Enums/SRTLogLevel.html +++ b/docs/Enums/SRTLogLevel.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -465,7 +462,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html index ea9730626..d0aa13a30 100644 --- a/docs/Enums/SRTMode.html +++ b/docs/Enums/SRTMode.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html index 75f0be0ab..32e6392a1 100644 --- a/docs/Enums/SRTSocketOption.html +++ b/docs/Enums/SRTSocketOption.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1500,7 +1497,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index d61177694..f4038cfc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -400,24 +397,6 @@ Declaration - - - - - - IOMixer - - - - - - - - - - - - @@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
© 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09)
© 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10)
Generated by jazzy ♪♫ v0.14.4, a Realm project.
Specifies the delegate..
Specifies the delegate.
+ + + drawable +
Specifies the drawable.
public var drawable: (any NetStreamDrawable)? { get set }
@@ -1027,9 +1051,9 @@ Declaration - + - videoCapture(for:) + videoCapture(for:) @@ -1045,7 +1069,7 @@ Declaration Swift @available(tvOS 17.0, *) -public func videoCapture(for index: Int) -> IOVideoCaptureUnit? +public func videoCapture(for channel: UInt8) -> IOVideoCaptureUnit? @@ -1055,9 +1079,9 @@ Declaration - - - attachScreen(_:) + + + attachScreen(_:channel:) @@ -1072,7 +1096,7 @@ Declaration Declaration Swift - public func attachScreen(_ input: AVCaptureScreenInput?) + public func attachScreen(_ input: AVCaptureScreenInput?, channel: UInt8 = 0) @@ -1386,7 +1410,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/NetStream/ReadyState.html b/docs/Classes/NetStream/ReadyState.html index 2caf6ed53..884e080db 100644 --- a/docs/Classes/NetStream/ReadyState.html +++ b/docs/Classes/NetStream/ReadyState.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -546,7 +543,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/PiPHKView.html b/docs/Classes/PiPHKView.html index 5c7023884..d36c24d57 100644 --- a/docs/Classes/PiPHKView.html +++ b/docs/Classes/PiPHKView.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -586,7 +583,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection.html b/docs/Classes/RTMPConnection.html index 62d5082ea..fad3df2f6 100644 --- a/docs/Classes/RTMPConnection.html +++ b/docs/Classes/RTMPConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1179,7 +1176,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPConnection/Code.html b/docs/Classes/RTMPConnection/Code.html index 20a948234..16121d45b 100644 --- a/docs/Classes/RTMPConnection/Code.html +++ b/docs/Classes/RTMPConnection/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -662,7 +659,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPResponder.html b/docs/Classes/RTMPResponder.html index 686e35b28..69bd43bb4 100644 --- a/docs/Classes/RTMPResponder.html +++ b/docs/Classes/RTMPResponder.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPSharedObject.html b/docs/Classes/RTMPSharedObject.html index 84f9143dc..caaac2c87 100644 --- a/docs/Classes/RTMPSharedObject.html +++ b/docs/Classes/RTMPSharedObject.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -560,7 +557,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream.html b/docs/Classes/RTMPStream.html index a48340f3c..c18c852ce 100644 --- a/docs/Classes/RTMPStream.html +++ b/docs/Classes/RTMPStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -388,6 +385,33 @@ Declaration + + + + + + metadata + + + + + + + + The RTMPStream metadata. + + + + Declaration + + Swift + public internal(set) var metadata: [String : Any?] { get } + + + + + + @@ -401,7 +425,7 @@ Declaration - The NetStreamInfo object whose properties contain data. + The RTMPStreamInfo object whose properties contain data. @@ -442,6 +466,60 @@ Declaration + + + + + + audioSampleAccess + + + + + + + + The boolean value that indicates audio samples allow access or not. + + + + Declaration + + Swift + public internal(set) var audioSampleAccess: Bool { get } + + + + + + + + + + + + videoSampleAccess + + + + + + + + The boolean value that indicates video samples allow access or not. + + + + Declaration + + Swift + public internal(set) var videoSampleAccess: Bool { get } + + + + + + @@ -886,7 +964,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html index d0513e0c0..77197e939 100644 --- a/docs/Classes/RTMPStream/Code.html +++ b/docs/Classes/RTMPStream/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1416,7 +1413,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html index 4c2e17e96..dd139a891 100644 --- a/docs/Classes/RTMPStream/HowToPublish.html +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html index 622c553b8..86cbe134f 100644 --- a/docs/Classes/SRTConnection.html +++ b/docs/Classes/SRTConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -521,7 +518,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html index c6b37f667..f5f39e2d2 100644 --- a/docs/Classes/SRTLogger.html +++ b/docs/Classes/SRTLogger.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -411,7 +408,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html index c1211ea56..a954d8f86 100644 --- a/docs/Classes/SRTStream.html +++ b/docs/Classes/SRTStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -597,7 +594,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html index 138aec992..26edc077e 100644 --- a/docs/Classes/TSReader.html +++ b/docs/Classes/TSReader.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html index 43555bbc8..b005909b0 100644 --- a/docs/Classes/TSWriter.html +++ b/docs/Classes/TSWriter.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -732,7 +729,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html index d55833a19..73df1d1db 100644 --- a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -541,7 +538,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html index e11627ab8..2d34e49dc 100644 --- a/docs/Classes/VideoEffect.html +++ b/docs/Classes/VideoEffect.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -405,7 +402,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums.html b/docs/Enums.html index eab6df86d..18275ad55 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -593,7 +590,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html index 49b36c2cd..13499d457 100644 --- a/docs/Enums/DeviceUtil.html +++ b/docs/Enums/DeviceUtil.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html index f526835c9..d8902e9fa 100644 --- a/docs/Enums/IOAudioUnitError.html +++ b/docs/Enums/IOAudioUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html index fc14e20c1..ee1ae6407 100644 --- a/docs/Enums/IOVideoUnitError.html +++ b/docs/Enums/IOVideoUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html index 954db1558..d517055dc 100644 --- a/docs/Enums/ImageTransform.html +++ b/docs/Enums/ImageTransform.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html index 1caecc0a6..529babe0c 100644 --- a/docs/Enums/RTMPObjectEncoding.html +++ b/docs/Enums/RTMPObjectEncoding.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html index ea5b478ec..c36d9d6ab 100644 --- a/docs/Enums/SRTLogFunctionalArea.html +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1086,7 +1083,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html index 1b3709c97..0e4f7848f 100644 --- a/docs/Enums/SRTLogLevel.html +++ b/docs/Enums/SRTLogLevel.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -465,7 +462,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html index ea9730626..d0aa13a30 100644 --- a/docs/Enums/SRTMode.html +++ b/docs/Enums/SRTMode.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html index 75f0be0ab..32e6392a1 100644 --- a/docs/Enums/SRTSocketOption.html +++ b/docs/Enums/SRTSocketOption.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1500,7 +1497,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index d61177694..f4038cfc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -400,24 +397,6 @@ Declaration - - - - - - IOMixer - - - - - - - - - - - - @@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
- + - videoCapture(for:) + videoCapture(for:)
@available(tvOS 17.0, *) -public func videoCapture(for index: Int) -> IOVideoCaptureUnit?
- - - attachScreen(_:) + + + attachScreen(_:channel:)
public func attachScreen(_ input: AVCaptureScreenInput?)
public func attachScreen(_ input: AVCaptureScreenInput?, channel: UInt8 = 0)
+ + + metadata +
The RTMPStream metadata.
public internal(set) var metadata: [String : Any?] { get }
@@ -401,7 +425,7 @@ Declaration - The NetStreamInfo object whose properties contain data. + The RTMPStreamInfo object whose properties contain data. @@ -442,6 +466,60 @@ Declaration + + + + + + audioSampleAccess + + + + + + + + The boolean value that indicates audio samples allow access or not. + + + + Declaration + + Swift + public internal(set) var audioSampleAccess: Bool { get } + + + + + + + + + + + + videoSampleAccess + + + + + + + + The boolean value that indicates video samples allow access or not. + + + + Declaration + + Swift + public internal(set) var videoSampleAccess: Bool { get } + + + + + + @@ -886,7 +964,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html index d0513e0c0..77197e939 100644 --- a/docs/Classes/RTMPStream/Code.html +++ b/docs/Classes/RTMPStream/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1416,7 +1413,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html index 4c2e17e96..dd139a891 100644 --- a/docs/Classes/RTMPStream/HowToPublish.html +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html index 622c553b8..86cbe134f 100644 --- a/docs/Classes/SRTConnection.html +++ b/docs/Classes/SRTConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -521,7 +518,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html index c6b37f667..f5f39e2d2 100644 --- a/docs/Classes/SRTLogger.html +++ b/docs/Classes/SRTLogger.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -411,7 +408,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html index c1211ea56..a954d8f86 100644 --- a/docs/Classes/SRTStream.html +++ b/docs/Classes/SRTStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -597,7 +594,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html index 138aec992..26edc077e 100644 --- a/docs/Classes/TSReader.html +++ b/docs/Classes/TSReader.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html index 43555bbc8..b005909b0 100644 --- a/docs/Classes/TSWriter.html +++ b/docs/Classes/TSWriter.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -732,7 +729,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html index d55833a19..73df1d1db 100644 --- a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -541,7 +538,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html index e11627ab8..2d34e49dc 100644 --- a/docs/Classes/VideoEffect.html +++ b/docs/Classes/VideoEffect.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -405,7 +402,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums.html b/docs/Enums.html index eab6df86d..18275ad55 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -593,7 +590,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html index 49b36c2cd..13499d457 100644 --- a/docs/Enums/DeviceUtil.html +++ b/docs/Enums/DeviceUtil.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html index f526835c9..d8902e9fa 100644 --- a/docs/Enums/IOAudioUnitError.html +++ b/docs/Enums/IOAudioUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html index fc14e20c1..ee1ae6407 100644 --- a/docs/Enums/IOVideoUnitError.html +++ b/docs/Enums/IOVideoUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html index 954db1558..d517055dc 100644 --- a/docs/Enums/ImageTransform.html +++ b/docs/Enums/ImageTransform.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html index 1caecc0a6..529babe0c 100644 --- a/docs/Enums/RTMPObjectEncoding.html +++ b/docs/Enums/RTMPObjectEncoding.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html index ea5b478ec..c36d9d6ab 100644 --- a/docs/Enums/SRTLogFunctionalArea.html +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1086,7 +1083,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html index 1b3709c97..0e4f7848f 100644 --- a/docs/Enums/SRTLogLevel.html +++ b/docs/Enums/SRTLogLevel.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -465,7 +462,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html index ea9730626..d0aa13a30 100644 --- a/docs/Enums/SRTMode.html +++ b/docs/Enums/SRTMode.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html index 75f0be0ab..32e6392a1 100644 --- a/docs/Enums/SRTSocketOption.html +++ b/docs/Enums/SRTSocketOption.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1500,7 +1497,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index d61177694..f4038cfc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -400,24 +397,6 @@ Declaration - - - - - - IOMixer - - - - - - - - - - - - @@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
The NetStreamInfo object whose properties contain data.
The RTMPStreamInfo object whose properties contain data.
+ + + audioSampleAccess +
The boolean value that indicates audio samples allow access or not.
public internal(set) var audioSampleAccess: Bool { get }
+ + + videoSampleAccess +
The boolean value that indicates video samples allow access or not.
public internal(set) var videoSampleAccess: Bool { get }
@@ -886,7 +964,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/Code.html b/docs/Classes/RTMPStream/Code.html index d0513e0c0..77197e939 100644 --- a/docs/Classes/RTMPStream/Code.html +++ b/docs/Classes/RTMPStream/Code.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1416,7 +1413,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/RTMPStream/HowToPublish.html b/docs/Classes/RTMPStream/HowToPublish.html index 4c2e17e96..dd139a891 100644 --- a/docs/Classes/RTMPStream/HowToPublish.html +++ b/docs/Classes/RTMPStream/HowToPublish.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTConnection.html b/docs/Classes/SRTConnection.html index 622c553b8..86cbe134f 100644 --- a/docs/Classes/SRTConnection.html +++ b/docs/Classes/SRTConnection.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -521,7 +518,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTLogger.html b/docs/Classes/SRTLogger.html index c6b37f667..f5f39e2d2 100644 --- a/docs/Classes/SRTLogger.html +++ b/docs/Classes/SRTLogger.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -411,7 +408,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/SRTStream.html b/docs/Classes/SRTStream.html index c1211ea56..a954d8f86 100644 --- a/docs/Classes/SRTStream.html +++ b/docs/Classes/SRTStream.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -597,7 +594,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSReader.html b/docs/Classes/TSReader.html index 138aec992..26edc077e 100644 --- a/docs/Classes/TSReader.html +++ b/docs/Classes/TSReader.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/TSWriter.html b/docs/Classes/TSWriter.html index 43555bbc8..b005909b0 100644 --- a/docs/Classes/TSWriter.html +++ b/docs/Classes/TSWriter.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -732,7 +729,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html index d55833a19..73df1d1db 100644 --- a/docs/Classes/VideoAdaptiveNetBitRateStrategy.html +++ b/docs/Classes/VideoAdaptiveNetBitRateStrategy.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -541,7 +538,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Classes/VideoEffect.html b/docs/Classes/VideoEffect.html index e11627ab8..2d34e49dc 100644 --- a/docs/Classes/VideoEffect.html +++ b/docs/Classes/VideoEffect.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -405,7 +402,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums.html b/docs/Enums.html index eab6df86d..18275ad55 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -593,7 +590,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/DeviceUtil.html b/docs/Enums/DeviceUtil.html index 49b36c2cd..13499d457 100644 --- a/docs/Enums/DeviceUtil.html +++ b/docs/Enums/DeviceUtil.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOAudioUnitError.html b/docs/Enums/IOAudioUnitError.html index f526835c9..d8902e9fa 100644 --- a/docs/Enums/IOAudioUnitError.html +++ b/docs/Enums/IOAudioUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/IOVideoUnitError.html b/docs/Enums/IOVideoUnitError.html index fc14e20c1..ee1ae6407 100644 --- a/docs/Enums/IOVideoUnitError.html +++ b/docs/Enums/IOVideoUnitError.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/ImageTransform.html b/docs/Enums/ImageTransform.html index 954db1558..d517055dc 100644 --- a/docs/Enums/ImageTransform.html +++ b/docs/Enums/ImageTransform.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/RTMPObjectEncoding.html b/docs/Enums/RTMPObjectEncoding.html index 1caecc0a6..529babe0c 100644 --- a/docs/Enums/RTMPObjectEncoding.html +++ b/docs/Enums/RTMPObjectEncoding.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogFunctionalArea.html b/docs/Enums/SRTLogFunctionalArea.html index ea5b478ec..c36d9d6ab 100644 --- a/docs/Enums/SRTLogFunctionalArea.html +++ b/docs/Enums/SRTLogFunctionalArea.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1086,7 +1083,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTLogLevel.html b/docs/Enums/SRTLogLevel.html index 1b3709c97..0e4f7848f 100644 --- a/docs/Enums/SRTLogLevel.html +++ b/docs/Enums/SRTLogLevel.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -465,7 +462,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTMode.html b/docs/Enums/SRTMode.html index ea9730626..d0aa13a30 100644 --- a/docs/Enums/SRTMode.html +++ b/docs/Enums/SRTMode.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Enums/SRTSocketOption.html b/docs/Enums/SRTSocketOption.html index 75f0be0ab..32e6392a1 100644 --- a/docs/Enums/SRTSocketOption.html +++ b/docs/Enums/SRTSocketOption.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -1500,7 +1497,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions.html b/docs/Extensions.html index d61177694..f4038cfc1 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -400,24 +397,6 @@ Declaration - - - - - - IOMixer - - - - - - - - - - - - @@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
- - - IOMixer -
@@ -449,7 +428,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AVAudioCommonFormat.html b/docs/Extensions/AVAudioCommonFormat.html index 456586cb0..207789ec8 100644 --- a/docs/Extensions/AVAudioCommonFormat.html +++ b/docs/Extensions/AVAudioCommonFormat.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioFormatID.html b/docs/Extensions/AudioFormatID.html index 544d23ecb..c6aded402 100644 --- a/docs/Extensions/AudioFormatID.html +++ b/docs/Extensions/AudioFormatID.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Extensions/AudioStreamBasicDescription.html b/docs/Extensions/AudioStreamBasicDescription.html index 98d15f99a..32a73be7a 100644 --- a/docs/Extensions/AudioStreamBasicDescription.html +++ b/docs/Extensions/AudioStreamBasicDescription.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -356,7 +353,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Global Variables.html b/docs/Global Variables.html index 83cd2f3dc..3a247addd 100644 --- a/docs/Global Variables.html +++ b/docs/Global Variables.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -351,7 +348,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols.html b/docs/Protocols.html index 82bd7a62d..49a6f258d 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -322,9 +319,9 @@ Protocols - - - TSReaderDelegate + + + IOMuxer @@ -332,15 +329,15 @@ Protocols - The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. + A type that multiplexer for streaming. - See more + See more Declaration Swift - public protocol TSReaderDelegate : AnyObject + public protocol IOMuxer : Running @@ -350,9 +347,9 @@ Declaration - - - TSWriterDelegate + + + IORecorderDelegate @@ -360,15 +357,15 @@ Declaration - The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. + The interface an IORecorder uses to inform its delegate. - See more + See more Declaration Swift - public protocol TSWriterDelegate : AnyObject + public protocol IORecorderDelegate : AnyObject @@ -378,9 +375,9 @@ Declaration - - - IOMuxer + + + IOScreenCaptureUnitDelegate @@ -388,15 +385,15 @@ Declaration - A type that multiplexer for streaming. + The interface a capture session uses to inform its delegate. - See more + See more Declaration Swift - public protocol IOMuxer : Running + public protocol IOScreenCaptureUnitDelegate : AnyObject @@ -406,9 +403,9 @@ Declaration - - - IORecorderDelegate + + + IOScreenCaptureUnit @@ -416,15 +413,15 @@ Declaration - The interface an IORecorder uses to inform its delegate. + The interface that provides methods to screen capture. - See more + See more Declaration Swift - public protocol IORecorderDelegate : AnyObject + public protocol IOScreenCaptureUnit : Running @@ -434,9 +431,9 @@ Declaration - - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate @@ -444,15 +441,15 @@ Declaration - The interface a capture session uses to inform its delegate. + The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnitDelegate : AnyObject + public protocol TSReaderDelegate : AnyObject @@ -462,9 +459,9 @@ Declaration - - - IOScreenCaptureUnit + + + TSWriterDelegate @@ -472,15 +469,15 @@ Declaration - The interface that provides methods to screen capture. + The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates. - See more + See more Declaration Swift - public protocol IOScreenCaptureUnit : Running + public protocol TSWriterDelegate : AnyObject @@ -660,7 +657,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/EventDispatcherConvertible.html b/docs/Protocols/EventDispatcherConvertible.html index ad98b7a2e..1c6990391 100644 --- a/docs/Protocols/EventDispatcherConvertible.html +++ b/docs/Protocols/EventDispatcherConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOMuxer.html b/docs/Protocols/IOMuxer.html index da55c7ba7..3f9c75067 100644 --- a/docs/Protocols/IOMuxer.html +++ b/docs/Protocols/IOMuxer.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -439,7 +436,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IORecorderDelegate.html b/docs/Protocols/IORecorderDelegate.html index e43533276..9a4592437 100644 --- a/docs/Protocols/IORecorderDelegate.html +++ b/docs/Protocols/IORecorderDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnit.html b/docs/Protocols/IOScreenCaptureUnit.html index 21e4c4054..42fee72d1 100644 --- a/docs/Protocols/IOScreenCaptureUnit.html +++ b/docs/Protocols/IOScreenCaptureUnit.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -385,7 +382,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/IOScreenCaptureUnitDelegate.html b/docs/Protocols/IOScreenCaptureUnitDelegate.html index 12f001007..99e9c062a 100644 --- a/docs/Protocols/IOScreenCaptureUnitDelegate.html +++ b/docs/Protocols/IOScreenCaptureUnitDelegate.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -358,7 +355,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetBitRateStrategyConvertible.html b/docs/Protocols/NetBitRateStrategyConvertible.html index 361bdf24b..aca5d9192 100644 --- a/docs/Protocols/NetBitRateStrategyConvertible.html +++ b/docs/Protocols/NetBitRateStrategyConvertible.html @@ -17,7 +17,7 @@ - HaishinKit 1.7.1 Docs (88% documented) + HaishinKit 1.7.2 Docs (88% documented) @@ -194,9 +194,6 @@ AudioStreamBasicDescription - - IOMixer - SRTSocket @@ -493,7 +490,7 @@ Declaration - © 2023 shogo4405. All rights reserved. (Last updated: 2023-11-09) + © 2023 shogo4405. All rights reserved. (Last updated: 2023-12-10) Generated by jazzy ♪♫ v0.14.4, a Realm project. diff --git a/docs/Protocols/NetStreamDelegate.html b/docs/Protocols/NetStreamDelegate.html index c2aff73b7..cf6214c3a 100644 --- a/docs/Protocols/NetStreamDelegate.html +++ b/docs/Protocols/NetStreamDelegate.html @@ -17,7 +17,7 @@ -
- - - TSReaderDelegate + + + IOMuxer
The interface an MPEG-2 TS (Transport Stream) reader uses to inform its delegates.
A type that multiplexer for streaming.
public protocol TSReaderDelegate : AnyObject
public protocol IOMuxer : Running
- - - TSWriterDelegate + + + IORecorderDelegate
The interface an MPEG-2 TS (Transport Stream) writer uses to inform its delegates.
The interface an IORecorder uses to inform its delegate.
public protocol TSWriterDelegate : AnyObject
public protocol IORecorderDelegate : AnyObject
- - - IOMuxer + + + IOScreenCaptureUnitDelegate
The interface a capture session uses to inform its delegate.
public protocol IOScreenCaptureUnitDelegate : AnyObject
- - - IORecorderDelegate + + + IOScreenCaptureUnit
The interface that provides methods to screen capture.
public protocol IOScreenCaptureUnit : Running
- - - IOScreenCaptureUnitDelegate + + + TSReaderDelegate
- - - IOScreenCaptureUnit + + + TSWriterDelegate