zyc 689fa8936b Integrate Volcengine realtime voice + Live2D mouth driving
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 15:39:23 +08:00

24 lines
493 B
Objective-C

//
// SpeechMonitor.h
// SpeechDemo
//
// Created by fangweiwei on 2023/3/31.
// Copyright © 2023 fangweiwei. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface SpeechMonitor : NSObject
+ (instancetype)shareInstance;
- (void)UploadDelay:(long)delay withEventName:(NSString *)eventName withServiceName:(NSString *)serviceName;
- (void)UploadMetric:(NSDictionary *)metric withServiceName:(NSString *)serviceName;
@end
NS_ASSUME_NONNULL_END