我正在尝试录制音频并将其保存到特定文件夹,并使用该保存的音频进行一些播放功能。 我可以录制并保存它,但我无法将该音频文件保存到目录,也无法播放 有人可以帮助我吗
import { Component } from '@angular/core';
import {File} from 'ionic-native';
import { NavController,AlertController } from 'ionic-angular';
import { MediaPlugin } from 'ionic-native';
declare var cordova;
declare var cordovaFile;
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
media: MediaPlugin = new MediaPlugin('../Library/NoCloud/recording.wav');
constructor(public navCtrl: NavController,
public alertCtrl: AlertController) {
}
createFolder(){
console.log('inside folder creation');
File.createDir(cordova.file.externalRootDirectory, "Audio_folder", false)
.then(function (success) {
console.log("folder creation sucess",success);
}, function (error) {
console.log("folder creation error",error);
});
}
startRecording() {
try {
this.media.startRecord();
console.log('started to record');
}
catch (e) {
this.showAlert('Could not start recording.');
}
}
stopRecording() {
try {
this.media.stopRecord();
console.log("media time",this.media.getDuration());
console.log('record stopped');
}
catch (e) {
this.showAlert('Could not stop recording.');
}
}
startPlayback() {
try {
this.media.play();
console.log('in start play back function');
console.log('in start play back function',this.media.play);
}
catch (e) {
this.showAlert('Could not play recording.');
}
}
stopPlayback() {console.log('playback stopped');
try {
this.media.stop();
}
catch (e) {
this.showAlert('Could not stop playing recording.');
}
}
showAlert(message) {
let alert = this.alertCtrl.create({
title: 'Error',
subTitle: message,
buttons: ['OK']
});
alert.present();
}
}
目前,我可以将文件夹放入我的移动内部存储中,并且我可以使用文件资源管理器查看它,并且录制的音频文件在我的内部存储中也可见,但我无法播放,我收到错误代码 1 NOT_FOUND_ERR。如果我尝试获取持续时间,我会在我的控制台中得到 -1我正在安卓设备上测试它提前感谢您的帮助
安卓设备上的录音机使用:
public media: MediaPlugin;
startRecording() {
try {
this.media = new MediaPlugin(“recording.mp3”);
this.media.startRecord();
console.log('started to record');
}
catch (e) {
this.showAlert('Could not start recording.');
}
}
我在这里回答你的主要问题。我认为如果您遵循这些指南,您的应用程序将正常工作。
getDuration() 函数将始终显示 -1,如果你在不开始播放的情况下检查它。因此,如果要检查音乐的持续时间,则必须开始播放。
var durationInterval = window.setInterval(() => {
if (this.mediaPlugin) {
this.durationOfMusic = this.mediaPlugin.getDuration().toFixed(2);
}
if (this.durationOfMusic > -1) {
window.clearInterval(durationInterval);
}
}, 1);