20 lines
593 B
Objective-C
20 lines
593 B
Objective-C
//
|
|
// QXAudioEngineManager.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/6.
|
|
//
|
|
|
|
#import "QXAudioEngineManager.h"
|
|
#import<Speech/Speech.h>
|
|
@interface QXAudioEngineManager()
|
|
@property (nonatomic, strong) AVAudioEngine *audioEngine;
|
|
@property (nonatomic, strong) SFSpeechRecognizer *speechRecognizer;
|
|
@property (nonatomic, strong) SFSpeechAudioBufferRecognitionRequest *recognitionRequest;
|
|
@property (nonatomic, strong) SFSpeechRecognitionTask *recognitionTask;
|
|
@property (nonatomic, strong) NSLocale *locale;
|
|
@end
|
|
@implementation QXAudioEngineManager
|
|
|
|
@end
|