Skip to content
New issue

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

Roadmap To Wavy 0.10.0 #34

Open
1 of 7 tasks
AldaronLau opened this issue Oct 14, 2021 · 2 comments
Open
1 of 7 tasks

Roadmap To Wavy 0.10.0 #34

AldaronLau opened this issue Oct 14, 2021 · 2 comments
Assignees
Labels
roadmap Roadmap Issues

Comments

@AldaronLau
Copy link
Member

AldaronLau commented Oct 14, 2021

See #46 for next version roadmap.

@AldaronLau AldaronLau added the roadmap Roadmap Issues label Oct 14, 2021
@AldaronLau AldaronLau self-assigned this Oct 14, 2021
@beckend
Copy link

beckend commented Jul 8, 2022

Ability to select hardware by name? Microphone::Default() is very limiting.

@AldaronLau
Copy link
Member Author

AldaronLau commented Jul 8, 2022

@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];

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
roadmap Roadmap Issues
Projects
None yet
Development

No branches or pull requests

2 participants