We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microphone
Speakers
Notifier
Send
See #46 for next version roadmap.
The text was updated successfully, but these errors were encountered:
Ability to select hardware by name? Microphone::Default() is very limiting.
Microphone::Default()
Sorry, something went wrong.
@beckend you can already select hardware by name, more or less like this:
let mics = Microphone::query(); let (i, _mic_name) = mics .iter() .map(|m| format!("{m}")) .enumerate() .filter(|(_i, n)| n == "Microphone Name") .next() .expect("Microphone doesn't exist"); let mic = mics[i];
AldaronLau
No branches or pull requests
Microphone
,Speakers
asNotifier
#45Send
with whisk and smelling_salts 0.7.x Implement Send for all 4 structs #30See #46 for next version roadmap.
The text was updated successfully, but these errors were encountered: