Я пытаюсь написать программу на C ++, которая воспроизводит обработанный звук в реальном времени.Я решил использовать RtAudio, но не могу заставить тестовые программы воспроизводить аудио.
Я использую Mac OS X, поэтому я скомпилировал с ./configure --with-core
и make
.После компиляции файлов в тестовом каталоге я запустил ./audioprobe
, чтобы вернуть этот список.
Compiled APIs:
OS-X Core Audio
Current API: OS-X Core Audio
Found 3 device(s) ...
Device Name = Apple Inc.: Built-in Microphone
Probe Status = Successful
Output Channels = 0
Input Channels = 2
Duplex Channels = 0
This is NOT the default output device.
This is NOT the default input device.
Natively supported data formats:
32-bit float
Supported sample rates = 44100 48000 88200 96000
Device Name = Apple Inc.: Built-in Input
Probe Status = Successful
Output Channels = 0
Input Channels = 2
Duplex Channels = 0
This is NOT the default output device.
This is the default input device.
Natively supported data formats:
32-bit float
Supported sample rates = 44100 48000 88200 96000
Device Name = Apple Inc.: Built-in Output
Probe Status = Successful
Output Channels = 2
Input Channels = 0
Duplex Channels = 0
This is the default output device.
This is NOT the default input device.
Natively supported data formats:
32-bit float
Supported sample rates = 44100 48000 88200 96000
Поскольку встроенное устройство вывода имеет индекс 2, я затем запустил ./playsaw 2 44100 2
, но произошла ошибка:
RtApiCore::probeDeviceOpen: system error (kAudioHardwareUnknownPropertyError)
getting stream format for device (2).
Как это можно исправить?