forked from raycast/script-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request raycast#366 from rolandleth/set-audio-improvements
Set audio improvements
- Loading branch information
Showing
2 changed files
with
252 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
#!/usr/bin/swift | ||
|
||
// Required parameters: | ||
// @raycast.schemaVersion 1 | ||
// @raycast.title Audio devices | ||
// @raycast.mode inline | ||
// @raycast.refreshTime 10m | ||
|
||
// Optional parameters: | ||
// @raycast.icon 🔈 | ||
// @raycast.packageName Audio | ||
|
||
// Documentation: | ||
// @raycast.description Shows the selected audio devices for input and output | ||
// @raycast.author Roland Leth | ||
// @raycast.authorURL https://runtimesharks.com | ||
|
||
import Foundation | ||
import CoreAudio | ||
|
||
// Based on https://stackoverflow.com/a/58618034/793916 | ||
|
||
final class AudioDevice { | ||
|
||
let audioDeviceID: AudioDeviceID | ||
|
||
init(deviceID: AudioDeviceID) { | ||
self.audioDeviceID = deviceID | ||
} | ||
|
||
var hasOutput: Bool { | ||
var address: AudioObjectPropertyAddress = AudioObjectPropertyAddress( | ||
mSelector: AudioObjectPropertySelector(kAudioDevicePropertyStreamConfiguration), | ||
mScope: AudioObjectPropertyScope(kAudioDevicePropertyScopeOutput), | ||
mElement: AudioObjectPropertyElement(0)) | ||
|
||
var propSize: UInt32 = 0 | ||
var result = AudioObjectGetPropertyDataSize( | ||
audioDeviceID, | ||
&address, | ||
UInt32(MemoryLayout<AudioObjectPropertyAddress>.size), | ||
nil, | ||
&propSize) | ||
|
||
if (result != 0) { | ||
return false | ||
} | ||
|
||
let bufferList = UnsafeMutablePointer<AudioBufferList>.allocate(capacity: Int(propSize)) | ||
|
||
defer { | ||
bufferList.deallocate() | ||
} | ||
|
||
result = AudioObjectGetPropertyData(audioDeviceID, &address, 0, nil, &propSize, bufferList) | ||
|
||
if (result != 0) { | ||
return false | ||
} | ||
|
||
let buffers = UnsafeMutableAudioBufferListPointer(bufferList) | ||
|
||
return buffers.contains { $0.mNumberChannels > 0 } | ||
} | ||
|
||
var name: String? { | ||
var address = AudioObjectPropertyAddress( | ||
mSelector: AudioObjectPropertySelector(kAudioDevicePropertyDeviceNameCFString), | ||
mScope: AudioObjectPropertyScope(kAudioObjectPropertyScopeGlobal), | ||
mElement: AudioObjectPropertyElement(kAudioObjectPropertyElementMaster)) | ||
|
||
var name: CFString? = nil | ||
var propSize = UInt32(MemoryLayout<CFString?>.size) | ||
let result = AudioObjectGetPropertyData(audioDeviceID, &address, 0, nil, &propSize, &name) | ||
|
||
if (result != 0) { | ||
return nil | ||
} | ||
|
||
return name as String? | ||
} | ||
|
||
} | ||
|
||
func findDevices() -> [AudioDevice] { | ||
var address = AudioObjectPropertyAddress( | ||
mSelector: AudioObjectPropertySelector(kAudioHardwarePropertyDevices), | ||
mScope: AudioObjectPropertyScope(kAudioObjectPropertyScopeGlobal), | ||
mElement: AudioObjectPropertyElement(kAudioObjectPropertyElementMaster)) | ||
|
||
var propSize: UInt32 = 0 | ||
var result = AudioObjectGetPropertyDataSize( | ||
AudioObjectID(kAudioObjectSystemObject), | ||
&address, | ||
UInt32(MemoryLayout<AudioObjectPropertyAddress>.size), | ||
nil, | ||
&propSize) | ||
|
||
if (result != 0) { | ||
print("Error \(result) from AudioObjectGetPropertyDataSize") | ||
return [] | ||
} | ||
|
||
let numDevices = Int(propSize / UInt32(MemoryLayout<AudioDeviceID>.size)) | ||
var devids = Array<AudioDeviceID>(repeating: AudioDeviceID(), count: numDevices) | ||
|
||
result = AudioObjectGetPropertyData( | ||
AudioObjectID(kAudioObjectSystemObject), | ||
&address, | ||
0, | ||
nil, | ||
&propSize, | ||
&devids) | ||
|
||
if (result != 0) { | ||
print("Error \(result) from AudioObjectGetPropertyData") | ||
return [] | ||
} | ||
|
||
return (0..<numDevices).compactMap { i in | ||
AudioDevice(deviceID: devids[i]) | ||
} | ||
|
||
} | ||
|
||
let devices = findDevices() | ||
let inputs = devices.filter { !$0.hasOutput } | ||
let outputs = devices.filter { $0.hasOutput } | ||
|
||
func selectedDevice(output: Bool) -> String? { | ||
var id = AudioObjectID(kAudioObjectSystemObject) | ||
var idSize = UInt32(MemoryLayout.size(ofValue: id)) | ||
let selector = output | ||
? kAudioHardwarePropertyDefaultOutputDevice | ||
: kAudioHardwarePropertyDefaultInputDevice | ||
|
||
var idPropertyAddress = AudioObjectPropertyAddress( | ||
mSelector: AudioObjectPropertySelector(selector), | ||
mScope: AudioObjectPropertyScope(kAudioObjectPropertyScopeGlobal), | ||
mElement: AudioObjectPropertyElement(kAudioObjectPropertyElementMaster)) | ||
|
||
let result = AudioObjectGetPropertyData( | ||
id, | ||
&idPropertyAddress, | ||
0, | ||
nil, | ||
&idSize, | ||
&id) | ||
|
||
if (result != 0) { | ||
return nil | ||
} | ||
|
||
return (output ? outputs : inputs).first { $0.audioDeviceID == id }?.name | ||
} | ||
|
||
let outputDevice = selectedDevice(output: true) | ||
let inputDevice = selectedDevice(output: false) | ||
|
||
let inputName = inputs | ||
.compactMap(\.name) | ||
.filter { inputDevice == $0 } | ||
.first | ||
let outputName = outputs | ||
.compactMap(\.name) | ||
.filter { outputDevice == $0 } | ||
.first | ||
|
||
switch (inputName, outputName) { | ||
case (let inputName?, let outputName?): | ||
print("\(inputName) | \(outputName)") | ||
case (let inputName?, nil): | ||
print("\(inputName)") | ||
case (nil, let outputName?): | ||
print("\(outputName)") | ||
case (nil, nil): | ||
print("No devices found") | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters