@5minds/node-red-dashboard-2-processcube-audio-capture 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nodes/ui-audio-capture.html +17 -0
- package/package.json +3 -2
|
@@ -40,3 +40,20 @@
|
|
|
40
40
|
<input type="text" id="node-input-send" />
|
|
41
41
|
</div>
|
|
42
42
|
</script>
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
<script type="text/markdown" data-help-name="ui-audio-capture">
|
|
46
|
+
Waiting for end events that are finished.
|
|
47
|
+
|
|
48
|
+
## Outputs
|
|
49
|
+
|
|
50
|
+
: payload.fileBase64 (string): Audio as base64 coded string
|
|
51
|
+
: payload.fileBlob (buffer): Audio as buffer
|
|
52
|
+
: payload.fileChunks (array): Audio as array of chunks
|
|
53
|
+
: payload.filePath (string): Filename as temporary path for the audio file
|
|
54
|
+
|
|
55
|
+
### References
|
|
56
|
+
|
|
57
|
+
- [The ProcessCube© Developer Network](https://processcube.io) - All documentation for the ProcessCube© platform
|
|
58
|
+
- [ProcessCube© LowCode Integration](https://processcube.io/docs/node-red) - LowCode integration in ProcessCube©
|
|
59
|
+
</script>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@5minds/node-red-dashboard-2-processcube-audio-capture",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A node to capture audio and pass the audio data on in the flow",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node-red",
|
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"version": ">=3.0.0",
|
|
57
57
|
"nodes": {
|
|
58
58
|
"ui-audio-capture": "nodes/ui-audio-capture.js"
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"examples": "examples"
|
|
60
61
|
},
|
|
61
62
|
"node-red-dashboard-2": {
|
|
62
63
|
"version": "1.0.0",
|