You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
When I run the standalone (APP target) on a MacBook Air (which doesn't have an audio input jack, just a microphone), it doesn't start an audio stream (so there's no input or output). The reason seems to be in app_main.h line 34:
#defineDEFAULT_INPUT_DEV "Built-in Input"
It's trying to set the input to something that's not in the hardware. Changing this to "Built-in Microphone" solves the problem on my MacBook Air. After changing it, you have to delete ~/Library/Application Support/ as well.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run the standalone (APP target) on a MacBook Air (which doesn't have an audio input jack, just a microphone), it doesn't start an audio stream (so there's no input or output). The reason seems to be in app_main.h line 34:
It's trying to set the input to something that's not in the hardware. Changing this to
"Built-in Microphone"
solves the problem on my MacBook Air. After changing it, you have to delete ~/Library/Application Support/ as well.The text was updated successfully, but these errors were encountered: