Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

View File

@@ -0,0 +1,176 @@
<!--
Copyright 2013, 2016, 2018, 2019 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/x-red" data-template-name="microphone">
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Microphone">
</div>
</script>
<script type="text/x-red" data-help-name="microphone">
<p>A simple microphone node to record audio directly from the web browser</p>
<p>Usage:</p>
<ol>
<li>Note - you must be using <code>https</code> to record</li>
<li>Click the <code>button</code> to start recording</li>
<li>Click the <code>button</code> again to stop recording</li>
</ol>
<p>The recorded audio is stored in the nodes <code>msg.payload</code> object</p>
<p>To see if the microphone node is supported in your browser check <a href="http://caniuse.com/#feat=stream" target="_blank">this</a> page</p>
<p>Supported output formats:</p>
<ul>
<li>WAV</li>
</ul>
</script>
<script type="text/javascript">
(function() {
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
window.AudioContext = window.AudioContext || window.webkitAudioContext || window.mozAudioContext || window.oAudioContext || window.msAudioContext;;
window.URL = window.URL || window.webkitURL || window.mozURL || window.msURL;
const MICSTATUS = {
OFF : '1',
ON : '2',
CONTEXTERROR : '4'
}
$.getScript( 'microphone/js/recorder.js' )
.done(function( script, textStatus ) {
// script loaded, do nothing
})
.fail(function( jqxhr, settings, exception ) {
console.log('FAILED to load recorder script: '+exception)
});
var instances = {}
var audio_context = new AudioContext
function checkAudioContextState() {
var p = new Promise(function resolver(resolve, reject) {
if (audio_context.state && 'running' !== audio_context.state && audio_context.resume) {
audio_context.resume().then(() => {
resolve()
})
} else {
resolve()
}
});
return p
}
function startRecording(id, stream) {
checkAudioContextState()
.then(() => {
var input = audio_context.createMediaStreamSource(stream)
instances[id] = new Recorder(input)
instances[id] && instances[id].record()
})
.catch(() => {
console.log('Audio Context Error')
setMicStatus(MICSTATUS.CONTEXTERROR, id)
})
}
function stopRecording(id, callback) {
if(!instances[id]) {
return
}
instances[id].stop()
instances[id].exportWAV(function(blob) {
instances[id].clear()
instances[id] = null
callback & callback(id, blob)
})
setMicStatus(MICSTATUS.OFF, id);
}
function getRecorder(id) {
const constraints = {video : false, audio : true};
navigator.mediaDevices.getUserMedia(constraints)
.then(function(stream) {
setMicStatus(MICSTATUS.ON, id)
startRecording(id, stream)
})
.catch(function(err) {
window.alert('Your browser does not support audio recording')
console.log(err)
})
}
function getRecorderXX(id) {
if(!navigator.getUserMedia) {
window.alert('Your browser does not support audio recording')
return
}
navigator.getUserMedia({audio: true},
function(stream){
setMicStatus(MICSTATUS.ON, id)
startRecording(id, stream)
},
function(e) {
window.alert(e.message)
})
}
function uploadRecord(id, blob) {
var xhr = new XMLHttpRequest()
xhr.open('POST', 'node-red-microphone/' + id, true)
xhr.send(blob)
}
function setMicStatus(record, id) {
$.getJSON('node-red-microphone/status', {status: record, id: id})
.done(function () {})
.fail(function (err) {
console.log(err);
})
.always(function () {});
}
RED.nodes.registerType('microphone', {
category: 'input',
defaults: {
name: {value: ''}
},
color: 'rgb(204, 230, 171)',
inputs: 0,
outputs: 1,
icon: 'microphone.png',
paletteLabel: 'microphone',
label: function() {
return this.name || 'microphone';
},
labelStyle: function() {
return this.name ? 'node_label_italic' : '';
},
button: {
onclick: function(){
if(instances[this.id]) {
stopRecording(this.id, uploadRecord)
} else {
getRecorder(this.id)
}
}
}
});
})();
</script>