• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 使用 ionic 媒体插件录制语音笔记在 IOS 上不起作用

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:45:46 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试使用 ionic cordova MediaFile 插件在 ios 设备上录制语音笔记并将其推送到 firebase 存储。

On android is working well.

这是我的代码:

首先我创建了 init() 函数

  init(): Promise < any > {
    this.date = moment().format('x');
    return new Promise((resolve, reject) => {
      let currentFile: File;
      this.fileName = this.date + `-rnb.mp3`;
      this.file.createFile(this.platform.is('ios') ? cordova.file.tempDirectory : cordova.file.dataDirectory, this.fileName, true).then((result) => {
        this.current_file_playing = this.createAudioFile(this.storageDirectory, this.fileName);
        resolve();
      }, (e) => {
        console.log(JSON.stringify(e, null, 2));
        reject(e);
      })
    });
  }

this.storageDirectory 它是在提供者constructor() 中定义的变量,等于目录路径取决于平台。这是以下代码:

this.platform.ready().then(() => {
  if (this.platform.is('ios')) {
    this.storageDirectory = this.file.tempDirectory;
  } else if (this.platform.is('android')) {
    this.storageDirectory = this.file.externalDataDirectory;
  }
});

那么record()函数就是监听按钮录制按钮

  record(){
    return new Promise((resolve,reject)=>{
      this.init().then((media:Media) => {
        try {
          this.startRecording(media);
          resolve(media);
        } catch (e) {
          console.log(e);
        }
      });
    });
  }

这是 startRecording() 函数:

  startRecording(mediaPlugin: any) {
    this.current_file_playing.startRecord();
  }

另外stopRecording()函数是一个停止按钮的监听器:

  stopRecording(mediaPlugin: any) {
    return new Promise((resolve,reject)=>{
      this.current_file_playing.stopRecord();
      this.current_file_playing.play();
      this.current_file_playing.setVolume(0.0); //trick
      this.saveFirebase().then((downloadUrl) => {
        resolve(downloadUrl);
      });
    });
  }

最后,这就是我使用 saveFirebase() 函数

插入 Firebase 的方式
  saveFirebase() {
    return new Promise((resolve, reject) => {
      let storageRef = firebase.storage().ref();
      let metadata = {
        contentType: 'audio/mp3',
      };
      this.file.readAsDataURL(this.storageDirectory, this.fileName).then((file) => {
        let voiceRef = storageRef.child(`voices/${this.fileName}`).putString(file, firebase.storage.StringFormat.DATA_URL);
        voiceRef.on(firebase.storage.TaskEvent.STATE_CHANGED, (snapshot) => {
          console.log("uploading");
        }, (e) => {
          console.log('inside the error');
          reject(e);
          console.log(JSON.stringify(e, null, 2),'this.error');
        }, () => {
          var downloadURL = voiceRef.snapshot.downloadURL;
          resolve(downloadURL);
        });
      });
    });
  }

saveFirebase()函数说明

首先我使用 this.file.readAsDataURL(...) 将文件转换为 base64 然后我使用 putString 推送 Firebase 存储方法。

The audio file is successfully pushed to Firebase Storage, But with 0 Byte size. That is mean to pushing to Firebase is working well, but the recording voice to the file is not working.

This is my Firebase Storage

The audio files that have size is recorded from android device.

有人知道我的问题是什么吗?

谢谢。



Best Answer-推荐答案


问题是:

音频文件应为 .wav。因此,当我将音频类型更改为 wav 时。

  let metadata = {
    contentType: 'audio/wav',
  };

this.fileName = this.date + `-rnb.mp3`;

它对我有用。

谢谢。

关于ios - 使用 ionic 媒体插件录制语音笔记在 IOS 上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48824291/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap