You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
4.5 KiB
139 lines
4.5 KiB
|
6 years ago
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
window.RecordAudio = (function () {
|
||
|
|
function useRecordRTC(rtcInfo) {
|
||
|
|
$(rtcInfo.blockId).show();
|
||
|
|
|
||
|
|
var mediaConstraints = {audio: true},
|
||
|
|
localStream = null,
|
||
|
|
recordRTC = null,
|
||
|
|
btnStart = $(rtcInfo.btnStartId),
|
||
|
|
btnStop = $(rtcInfo.btnStopId),
|
||
|
|
btnSave = $(rtcInfo.btnSaveId),
|
||
|
|
tagAudio = $(rtcInfo.plyrPreviewId);
|
||
|
|
|
||
|
|
function saveAudio() {
|
||
|
|
var recordedBlob = recordRTC.getBlob();
|
||
|
|
|
||
|
|
if (!recordedBlob) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
var btnSaveText = btnSave.html();
|
||
|
|
var fileExtension = recordedBlob.type.split('/')[1];
|
||
|
|
|
||
|
|
var formData = new FormData();
|
||
|
|
formData.append('audio', recordedBlob, 'audio.' + fileExtension);
|
||
|
|
|
||
|
|
for (var prop in rtcInfo.data) {
|
||
|
|
if (!rtcInfo.data.hasOwnProperty(prop)) {
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
|
||
|
|
formData.append(prop, rtcInfo.data[prop]);
|
||
|
|
}
|
||
|
|
|
||
|
|
$.ajax({
|
||
|
|
url: _p.web_plugin + 'whispeakauth/ajax/record_audio.php',
|
||
|
|
data: formData,
|
||
|
|
processData: false,
|
||
|
|
contentType: false,
|
||
|
|
type: 'POST',
|
||
|
|
beforeSend: function () {
|
||
|
|
btnStart.prop('disabled', true);
|
||
|
|
btnStop.prop('disabled', true);
|
||
|
|
btnSave.prop('disabled', true).text(btnSave.data('loadingtext'));
|
||
|
|
}
|
||
|
|
}).done(function (response) {
|
||
|
|
$('#messages-deck').append(response);
|
||
|
|
}).always(function () {
|
||
|
|
btnSave.prop('disabled', true).html(btnSaveText).parent().addClass('hidden');
|
||
|
|
btnStop.prop('disabled', true).parent().addClass('hidden');
|
||
|
|
btnStart.prop('disabled', false).parent().removeClass('hidden');
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
btnStart.on('click', function () {
|
||
|
|
tagAudio.prop('src', '');
|
||
|
|
|
||
|
|
function successCallback(stream) {
|
||
|
|
localStream = stream;
|
||
|
|
|
||
|
|
recordRTC = RecordRTC(stream, {
|
||
|
|
recorderType: StereoAudioRecorder,
|
||
|
|
numberOfAudioChannels: 1,
|
||
|
|
type: 'audio'
|
||
|
|
});
|
||
|
|
recordRTC.startRecording();
|
||
|
|
|
||
|
|
btnSave.prop('disabled', true).parent().addClass('hidden');
|
||
|
|
btnStop.prop('disabled', false).parent().removeClass('hidden');
|
||
|
|
btnStart.prop('disabled', true).parent().addClass('hidden');
|
||
|
|
tagAudio.removeClass('show').parents('#audio-wrapper').addClass('hidden');
|
||
|
|
}
|
||
|
|
|
||
|
|
function errorCallback(error) {
|
||
|
|
alert(error.message);
|
||
|
|
}
|
||
|
|
|
||
|
|
if (navigator.mediaDevices.getUserMedia) {
|
||
|
|
navigator.mediaDevices.getUserMedia(mediaConstraints)
|
||
|
|
.then(successCallback)
|
||
|
|
.catch(errorCallback);
|
||
|
|
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
navigator.getUserMedia = navigator.getUserMedia || navigator.mozGetUserMedia || navigator.webkitGetUserMedia;
|
||
|
|
|
||
|
|
if (navigator.getUserMedia) {
|
||
|
|
navigator.getUserMedia(mediaConstraints, successCallback, errorCallback);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
btnStop.on('click', function () {
|
||
|
|
if (!recordRTC) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
recordRTC.stopRecording(function (audioURL) {
|
||
|
|
btnStart.prop('disabled', false).parent().removeClass('hidden');
|
||
|
|
btnStop.prop('disabled', true).parent().addClass('hidden');
|
||
|
|
btnSave.prop('disabled', false).parent().removeClass('hidden');
|
||
|
|
|
||
|
|
tagAudio
|
||
|
|
.prop('src', audioURL)
|
||
|
|
.parents('#audio-wrapper')
|
||
|
|
.removeClass('hidden')
|
||
|
|
.addClass('show');
|
||
|
|
|
||
|
|
localStream.getTracks()[0].stop();
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
btnSave.on('click', function () {
|
||
|
|
if (!recordRTC) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
saveAudio();
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
return {
|
||
|
|
init: function (rtcInfo) {
|
||
|
|
$(rtcInfo.blockId).hide();
|
||
|
|
|
||
|
|
var userMediaEnabled = (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) ||
|
||
|
|
!!navigator.webkitGetUserMedia ||
|
||
|
|
!!navigator.mozGetUserMedia ||
|
||
|
|
!!navigator.getUserMedia;
|
||
|
|
|
||
|
|
if (!userMediaEnabled) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
useRecordRTC(rtcInfo);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})();
|