我正在使用cordova-plugin-media-with-compression插件。
我正在运行以下代码:
var test = new Media('test.wav');
test.startRecord();
test.pauseRecord();
test.resumeRecord();
test.stopRecord();
test.release();
test.play();
恢复后只播放部分录音。它不会在恢复前和Android中的恢复声音后合并。 但它在iOS中完美运行。
有人也遇到过这样的问题吗? 什么可以解决这个问题?
我正在使用PhoneGap Build构建应用程序。