SCStreamOutputType

// SCStreamOutputType 流输出的类型
public enum SCStreamOutputType : Int, @unchecked Sendable {
    case screen = 0 // 屏幕
    @available(macOS 13.0, *)
    case audio = 1 // 音频
}

Last updated