Chatgpt初體驗--macos開發(fā)切換麥克風(fēng)

不得不說循头,目前還是替代不了程序員

  • 有點答非所問

問:Use swift to switch macos microphone (使用swift 切換macos麥克風(fēng))

答:You can use Swift programming language to switch the microphone on macOS by utilizing the AVFoundation framework. Here's a sample code snippet that demonstrates how to switch between the input devices on macOS:

import AVFoundation

func switchInputDevice() {
    let session = AVAudioSession.sharedInstance()
    do {
        let inputs = session.availableInputs
        for input in inputs! {
            if input.portType == AVAudioSession.Port.builtInMic {
                try session.setPreferredInput(input)
                break
            }
        }
    } catch {
        print("Error switching input device: \(error)")
    }
}


In this code snippet, we import the AVFoundation framework and define a function named "switchInputDevice". This function gets the shared audio session and retrieves all available input devices. It then iterates through the input devices and checks if the input device is a built-in microphone. If it finds a built-in microphone, it sets it as the preferred input device using the setPreferredInput method of the AVAudioSession class.

You can call this function whenever you want to switch between input devices, such as when you want to switch to a different microphone. Note that this code snippet only demonstrates how to switch to a built-in microphone. If you want to switch to a different type of input device, you will need to modify the code accordingl

圖片.png

真實解決還是靠google了

切換攝像頭

var devices: [AVCaptureDevice] = []
            if #available(macOS 10.15, *) {
                let cameras =  AVCaptureDevice.DiscoverySession.init(deviceTypes: [.builtInWideAngleCamera, .externalUnknown], mediaType: .video, position: .unspecified)
                devices = cameras.devices
                
            } else {
                devices = AVCaptureDevice.devices(for: .video)
                
            }

            var cameraModel = [RTMenuModel]()
            
            for device in devices {
                let model = RTMenuModel()
                model.uniqueID = device.uniqueID
                model.deviceId = device.uniqueID
                model.name = device.localizedName
                cameraModel.append(model)
            }
             
  • 使用攝像頭處镶奉,返回使用切換的攝像頭勋磕。
func captureDevice(atPosition position: AVCaptureDevice.Position, uniqueID: String?) -> AVCaptureDevice? {
        
        if #available(macOS 10.15, *) {
            
            let deviceSession = AVCaptureDevice.DiscoverySession.init(deviceTypes: [.builtInWideAngleCamera, .externalUnknown], mediaType: .video, position: position)
            let devices = deviceSession.devices
            for device in devices {
                if uniqueID == nil {
                    return device
                }else{
                    if device.uniqueID == uniqueID {
                        return device
                    }
                }
            }
        }else{
            let devices = AVCaptureDevice.devices(for: AVMediaType.video)
            for device in devices {
                if selectCameraUniqueID == nil {
                    return device
                }else{
                    if device.uniqueID == selectCameraUniqueID {
                        return device
                    }
                }
            }
        }
        return nil;
    }

切換麥克風(fēng)

 var devices: [AVCaptureDevice] = []
            if #available(macOS 10.15, *) {
                let audios = AVCaptureDevice.DiscoverySession.init(deviceTypes: [.builtInMicrophone], mediaType: .audio, position: .unspecified)
                devices = audios.devices
                
            } else {
                devices = AVCaptureDevice.devices(for: .audio)
                
            }

            var audioModel = [RTMenuModel]()
            for device in devices {
                let model = RTMenuModel()
                model.uniqueID = device.uniqueID
                model.deviceId = String(describing: device.value(forKey: "_connectionID")!)
                model.name = device.localizedName
                audioModel.append(model)
            }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末欲间,一起剝皮案震驚了整個濱河市渺杉,隨后出現(xiàn)的幾起案子沦疾,更是在濱河造成了極大的恐慌蒲牧,老刑警劉巖蓝牲,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件惦费,死亡現(xiàn)場離奇詭異兵迅,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)趁餐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門喷兼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人后雷,你說我怎么就攤上這事季惯。” “怎么了臀突?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵勉抓,是天一觀的道長。 經(jīng)常有香客問我候学,道長藕筋,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任梳码,我火速辦了婚禮隐圾,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘掰茶。我一直安慰自己暇藏,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布濒蒋。 她就那樣靜靜地躺著盐碱,像睡著了一般。 火紅的嫁衣襯著肌膚如雪沪伙。 梳的紋絲不亂的頭發(fā)上瓮顽,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天,我揣著相機(jī)與錄音围橡,去河邊找鬼暖混。 笑死,一個胖子當(dāng)著我的面吹牛翁授,可吹牛的內(nèi)容都是我干的儒恋。 我是一名探鬼主播善绎,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼诫尽!你這毒婦竟也來了禀酱?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤牧嫉,失蹤者是張志新(化名)和其女友劉穎剂跟,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體酣藻,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡曹洽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了辽剧。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片送淆。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖怕轿,靈堂內(nèi)的尸體忽然破棺而出偷崩,到底是詐尸還是另有隱情,我是刑警寧澤撞羽,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布阐斜,位于F島的核電站,受9級特大地震影響诀紊,放射性物質(zhì)發(fā)生泄漏谒出。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一邻奠、第九天 我趴在偏房一處隱蔽的房頂上張望笤喳。 院中可真熱鬧,春花似錦碌宴、人聲如沸杀狡。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至忍抽,卻和暖如春八孝,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背鸠项。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工干跛, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人祟绊。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓楼入,卻偏偏與公主長得像哥捕,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子嘉熊,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容