鸿蒙应用开发-请求语音合成服务获取音频文件

发布时间:2024年01月18日

功能介绍:

请求语音合成服务,通过上传语音合成文本,返回音频数据,并保存到本地。这里要说明一下,由于HttpResponse接口给问题,服务的响应类型必须是application/octet-stream,才能正确获取音频数据并保存,接口文档:HttpResponse

语音合成服务可以参考:轻松快速搭建一个本地的语音合成服务

使用环境:

  • API 9
  • DevEco Studio 4.0 Release
  • Windows 11
  • Stage模型
  • ArkTS语言

所需权限:

  1. ohos.permission.INTERNET
  2. 只保存在应用文件夹,不涉及额外目录,不需要申请读写权限

注意: 只适合小于5M数据。

关键代码片段如下:

  async download() {
  if (this.text == "")return
  promptAction.showToast({ message: "合成文本:" + this.text })

  let httpRequest = http.createHttp();
  let context = getContext(this) as common.UIAbilityContext;
  const filesDir = context.filesDir;

  let promise = httpRequest.request(this.ttsUrl, {
    method: http.RequestMethod.POST,
    header: { 'Content-Type': 'application/json; charset=utf-8' },
    extraData: { "text": this.text }
  })
  promise.then((data) => {
    const timestamp = Date.now();
    const savePath = filesDir + `/${timestamp}.wav`
    console.info("保存路径:" + savePath)
    let file = fs.openSync(savePath, fs.OpenMode.WRITE_ONLY | fs.OpenMode.CREATE);
    // @ts-ignore
    fs.write(file.fd, data.result).then((writeLen) => {
      fs.closeSync(file);
      console.info("已成功保存文件,文件大小为:" + writeLen);
    }).catch((err) => {
      console.error("保存文件出错,错误信息:" + err.message + ", 错误代码:" + err.code);
    });
  }).catch((err) => {
    console.error('错误信息:' + JSON.stringify(err))
  })
}

完整代码:

import promptAction from '@ohos.promptAction';
import http from '@ohos.net.http';
import common from '@ohos.app.ability.common';
import fs from '@ohos.file.fs';

@Entry
@Component
struct Index {
  @State text: string = ''
  @State ttsUrl: string = "http://xxxx.xxxx"

  build() {
    Row() {
      TextInput({ placeholder: '请输入要合成的语音文本' })
        .width("70%")
        .height(40)
        .onChange((value: string) => {
          this.text = value
        })
      Button("合成")
        .fontSize(16)
        .width("25%")
        .height(40)
        .margin({ left: 10 })
        .onClick(() => {
          this.download()
        })
    }
    .height("100%")
    .padding({ bottom: 10 })
    .alignItems(VerticalAlign.Bottom)
  }

  async download() {
    if (this.text == "")return
    promptAction.showToast({ message: "合成文本:" + this.text })

    let httpRequest = http.createHttp();
    let context = getContext(this) as common.UIAbilityContext;
    const filesDir = context.filesDir;

    let promise = httpRequest.request(this.ttsUrl, {
      method: http.RequestMethod.POST,
      header: { 'Content-Type': 'application/json; charset=utf-8' },
      extraData: { "text": this.text }
    })
    promise.then((data) => {
      const timestamp = Date.now();
      const savePath = filesDir + `/${timestamp}.wav`
      console.info("保存路径:" + savePath)
      let file = fs.openSync(savePath, fs.OpenMode.WRITE_ONLY | fs.OpenMode.CREATE);
      // @ts-ignore
      fs.write(file.fd, data.result).then((writeLen) => {
        fs.closeSync(file);
        console.info("已成功保存文件,文件大小为:" + writeLen);
      }).catch((err) => {
        console.error("保存文件出错,错误信息:" + err.message + ", 错误代码:" + err.code);
      });
    }).catch((err) => {
      console.error('错误信息:' + JSON.stringify(err))
    })
  }
}
文章来源:https://blog.csdn.net/qq_33200967/article/details/135682570
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。