* Writes raw audio synthesised from text to a file. Has no SSML template. Basic SSML should be provided in the request. * * @param dirPath a valid output directory path. * @param requestSSML the SSML to send. SSML elements required in order to work. * @returns {Promise<{audioFile
(dirPath: string, requestSSML: string)
| 337 | } { |
| 338 | return this._rawSSMLRequest(this._SSMLTemplate(input, options)) |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Writes raw audio synthesised from text to a file. Has no SSML template. Basic SSML should be provided in the request. |
| 343 | * |
| 344 | * @param dirPath a valid output directory path. |
| 345 | * @param requestSSML the SSML to send. SSML elements required in order to work. |
| 346 | * @returns {Promise<{audioFilePath: string, metadataFilePath: string | null}>} - a `Promise` with the full filepaths |
| 347 | */ |
nothing calls this directly
no test coverage detected