logo

English

이곳의 프로그래밍관련 정보와 소스는 마음대로 활용하셔도 좋습니다. 다만 쓰시기 전에 통보 정도는 해주시는 것이 예의 일것 같습니다. 질문이나 오류 수정은 siseong@gmail.com 으로 주세요. 감사합니다.

Core Audio를 사용하여 macOS에서 Audio를 Capture하는 코드

by digipine posted Apr 19, 2024
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

아래에서 Core Audio를 사용하여 macOS에서 오디오를 캡처하는 간단한 예제 코드를 제공합니다.

이 예제는 C++로 작성되었고, 입력된 오디오를 터미널에 출력하는 기능을 수행합니다.

macOS에서 실행할 수 있으며, 실행 시 키보드에서 Enter를 누르면 오디오 캡처가 중지됩니다. 이 예제는 단순히 오디오 데이터를 콘솔에 출력하지만, 실제 애플리케이션에서는 데이터를 적절히 처리하고 저장해야 합니다.

 

#include <iostream>
#include <CoreAudio/CoreAudio.h>
#include <CoreFoundation/CoreFoundation.h>

#define BUFFER_SIZE 1024

AudioQueueRef audioQueue;

static void HandleInputBuffer(void *input, AudioQueueRef inAQ, AudioQueueBufferRef inBuffer, const AudioTimeStamp *inStartTime, UInt32 inNumPackets, const AudioStreamPacketDescription *inPacketDesc) {
    // 오디오 데이터 처리 (여기서는 단순히 콘솔에 출력)
    for (int i = 0; i < inNumPackets; ++i) {
        std::cout << ((float *)((char *)inBuffer->mAudioData + (inPacketDesc ? inPacketDesc[i].mStartOffset : 0)))[0] << std::endl;
    }
    
    // 오디오 버퍼 재사용
    AudioQueueEnqueueBuffer(inAQ, inBuffer, 0, nullptr);
}

int main() {
    // 오디오 입력 장치 찾기
    AudioObjectPropertyAddress propertyAddress;
    propertyAddress.mSelector = kAudioHardwarePropertyDefaultInputDevice;
    propertyAddress.mScope = kAudioObjectPropertyScopeGlobal;
    propertyAddress.mElement = kAudioObjectPropertyElementMaster;

    AudioDeviceID deviceId;
    UInt32 size = sizeof(deviceId);
    OSStatus status = AudioObjectGetPropertyData(
        kAudioObjectSystemObject, &propertyAddress, 0, nullptr, &size, &deviceId);
    if (status != noErr) {
        std::cerr << "Failed to get default input device" << std::endl;
        return 1;
    }

    // 오디오 캡처 세션 설정
    AudioStreamBasicDescription audioFormat;
    audioFormat.mSampleRate = 44100.0;
    audioFormat.mFormatID = kAudioFormatLinearPCM;
    audioFormat.mFormatFlags = kAudioFormatFlagIsSignedInteger | kAudioFormatFlagIsPacked;
    audioFormat.mFramesPerPacket = 1;
    audioFormat.mChannelsPerFrame = 1;
    audioFormat.mBitsPerChannel = 16;
    audioFormat.mBytesPerPacket = audioFormat.mBytesPerFrame = (audioFormat.mBitsPerChannel / 8) * audioFormat.mChannelsPerFrame;

    // 오디오 큐 생성
    status = AudioQueueNewInput(&audioFormat, HandleInputBuffer, nullptr, nullptr, kCFRunLoopCommonModes, 0, &audioQueue);
    if (status != noErr) {
        std::cerr << "Failed to create audio queue" << std::endl;
        return 1;
    }

    // 오디오 큐 시작
    status = AudioQueueStart(audioQueue, nullptr);
    if (status != noErr) {
        std::cerr << "Failed to start audio queue" << std::endl;
        return 1;
    }

    // 콘솔에서 키 입력을 기다림
    std::cout << "Press Enter to stop capturing audio..." << std::endl;
    getchar();

    // 오디오 큐 중지 및 해제
    AudioQueueStop(audioQueue, true);
    AudioQueueDispose(audioQueue, true);

    return 0;
}
TAG •

List of Articles
No. Subject Author Date Views
» Core Audio를 사용하여 macOS에서 Audio를 Capture하는 코드 digipine 2024.04.19 350
55 [macOS, iOS] 개발자 정보 확인하는 명령어 digipine 2023.03.23 360
54 macOS Daemon 관련 시스템 폴더 목록 lizard2019 2024.03.08 371
53 iOS - Socket Nagle 알고리듬 OFF digipine 2017.11.01 409
52 iOS - Objective-C 남아있는 메모리 공간 확인 방법 digipine 2017.11.01 432
51 iOS - NSString 와 NSData 간의 데이터 상호 변환 digipine 2017.11.01 448
50 iOS - Thread Loop 내에서 UI 업데이트 방법 digipine 2017.11.01 473
49 iOS - Objective-C Callback for C++ digipine 2017.11.01 510
48 Firebase 'GoogleUtilities/GULURLSessionDataResponse.h' file not found Error Fix lizard2019 2023.07.04 539
47 [macOS] 현재 사용 중인(열려있는) 포트 확인하고 Close 하기 digipine 2022.10.24 553
46 iOS - NSURLConnection로 다중 다운로드 구현 digipine 2017.11.01 556
45 Apple AppStore App Review 시 Reject 피하기 위한 방법 digipine 2017.11.02 585
44 iOS - Query string을 Decode 하는 소스 digipine 2017.11.01 586
43 iOS , MacOS, iPhone용 GZipStream class 구현하기 digipine 2017.11.01 600
42 Concurrent vs Serial DispatchQueue: Concurrency in Swift explained lizard2019 2021.04.16 615
41 [iOS] Audio Session Setting digipine 2021.11.26 678
40 [iOS] 개발자를 위한 iOS 15의 새로운 기능 file digipine 2021.11.04 706
39 iOS - View 이동 전환 하기 총정리 digipine 2017.11.01 755
38 [iOS, MacOS] ATS 보안 정책 가이드 digipine 2017.11.02 784
37 [MacOS] Terminal 에서 zsh compinit: insecure directories 경고 제거하기 lizard2019 2021.04.30 785
Board Pagination Prev 1 2 3 Next
/ 3