ユーザーが使用してテキストを聞くことができる phonegap のプラグインを作成しましたが、動作させるAVSpeechSynthesizer
ことができないようですpauseSpeakingAtBoundary
。
テスト目的で、現在、合成されるテキストの文字列または「PAUSE」と書かれた文字列を受け取り、 i f (![echo isEqual:@'PAUSE']
) をチェックして、発話を一時停止するかどうかを判断します。しゃべりが始まり、「PAUSE」が受信されたときにログに記録されますが、シンセサイザーはしゃべり続けます。
私はこれにまったく慣れていないので、間違いを犯したのか、に問題があるのか わかりませんpauseSpeakingAtBoudary
。私のコードは以下です。ありがとう。
繰り返しますが、私が作業できないのはpauseSpeakingAtBoundaryです。音声合成は、phonegaps のドキュメントに従って、javascript exec から動作しています。
//
// Echo.h
// Plugin
//
//
//
//
#import <Cordova/CDVPlugin.h>
#import <AVFoundation/AVFoundation.h>
@interface Echo : CDVPlugin <AVSpeechSynthesizerDelegate>
@property (strong, nonatomic) AVSpeechSynthesizer *synthesizer;
- (void) echo:(NSMutableArray*)arguments;
@end
//
// Echo.m
// Plugin
//
//
//
//
#import "Echo.h"
@implementation Echo
- (void)echo:(CDVInvokedUrlCommand*)command
{
CDVPluginResult* pluginResult = nil;
NSString* echo = [command.arguments objectAtIndex:0];
AVSpeechSynthesizer *synthesizer = [[AVSpeechSynthesizer alloc] init];
synthesizer.delegate = self;
if (echo != nil && [echo length] > 0 ) {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:echo];
if( ![echo isEqual:@"PAUSE"]) {
AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:echo];
utterance.rate = 0.20;
utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-gb"];
[synthesizer speakUtterance:utterance];
} else {
NSLog(@"Pausing");
[synthesizer pauseSpeakingAtBoundary:AVSpeechBoundaryImmediate];
}
} else {
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR];
}
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
@end