Phonegapを使用してAndroidアプリケーション(Voice Recorder)を作成していますが、コードに次の2つのエラーがありました。
ReferenceError: Can't find variable: Media.
TypeError: Result of expression 'mediaRec' undefined is not an object.
最初のエラーは、アプリケーションの実行時に発生します。2番目のエラーは、recordAudio()を呼び出すときに発生します。方法。
あなたが知っているなら、何が問題なのか教えてください。
var mediaRec;
var src;
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
}
function init() {
document.getElementById('status').innerHTML = "Recording Status";
src = "myrecording.mp3";
mediaRec = new Media(src, onSuccess, onError);
}
function recordAudio() {
// Record audio
mediaRec.startRecord();
// Stop recording after 10 sec
var recTime = 0;
var recInterval = setInterval(function() {
recTime = recTime + 1;
setAudioPosition(recTime + " sec");
if (recTime >= 10) {
clearInterval(recInterval);
}
}, 1000);
}
// Stop audio
function stopRecording() {
if (mediaRec) {
mediaRec.stopRecord();
}
clearInterval(mediaTimer);
mediaTimer = null;
}
// onSuccess Callback
function onSuccess() {
console.log("recordAudio():Audio Success");
}
// onError Callback
function onError(error) {
alert('code: ' + error.code + '\n' + 'message: ' + error.message + '\n');
}
// Set audio position
function setAudioPosition(position) {
document.getElementById('rec_position').innerHTML = position;
}
ありがとう。