[objc]//format the URLNSString *urlString = [NSString stringWithFormat:@" =Hola!&voice=es-US_SofiaVoice&accept=audio/flac&download=1", phrase, voice ];NSString* webStringURL = [urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];NSURL *flacURL = [NSURL URLWithString:webStringURL];
TesseracT One 2011 FLAC
//download the contents of the audio fileNSData *audioData = [NSData dataWithContentsOfURL:flacURL];NSString *docDirPath = NSTemporaryDirectory() ;NSString *filePath = [NSString stringWithFormat:@"%@transcript.flac", docDirPath ];[audioData writeToFile:filePath atomically:YES]; 2ff7e9595c
Comments