【发布时间】:2018-10-30 01:41:51
【问题描述】:
大家好,我尝试在我的 reactJS 应用程序中实现 getUserMedia 来录制音频。
我很难将我的 mediaRecorder this.state 对象链接到状态更改,并使媒体设备 API 获得我需要提供我的应用程序的功能。
当我点击视图上的“开始记录”时,我的控制台会返回:
TypeError: this.state.mediaRecorder.start is not a function
48 | startRecord() {
49 |
50 |
51 | this.setState({mediaRecorder:this.state.mediaRecorder.start()});
52 | alert("start record function started =, mediaRecorder state : " + this.state.mediaRecorder.state)
53 | console.log(this.state.mediaRecorder.state); // > recording
54 | console.log("recorder started"); View compiled
这里是我的 app.js:
import React from "react";
// import "./install.js" ;
import "./mediaDevices-getUserMedia-polyfill.js";
class RecorderAPI extends React.Component {
constructor(props) {
super(props);
this.handleDelete = this.handleDelete.bind(this);
this.startRecord = this.startRecord.bind(this);
this.stopRecord = this.stopRecord.bind(this);
this.recordOnStop = this.recordOnStop.bind(this);
this.state = {
mediaRecorder : [],
audioURL : []
}
}
componentDidMount() {
if(navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
console.log('getUserMedia supported');
// target
navigator.mediaDevices.getUserMedia( {audio: true })
/***** success callback ******/
// create a media stream
.then(function (stream) {
//if callback succeed, the following code will run :
// create a new Media Recorder instance
// with MediaRecorder() constructor
// this instance is the entry point
// into using the MediaRecorder API
stream = new MediaRecorder(stream);
this.setState({ mediaRecorder: stream });
})/***** error callback *****/
.catch(function (err) {
console.log("error : " + err)
});
}
else {
console.log("getUserMedia : missing")
}
}
// launch mediaRecorder.start methods the stream
// when the record button is pressed:
startRecord() {
this.setState({mediaRecorder: this.state.mediaRecorder.start()});
alert("start record function started =, mediaRecorder state : " + this.state.mediaRecorder.state)
console.log( this.state.mediaRecorder.state); // > recording
console.log("recorder started");
// As recording progresses we
// collect the audio data via an event handler
var chunks = []; // we set a container
this.setState({mediaRecorder: this.state.mediaRecorder.ondataavailable = function (e) {
chunks.push(e.data);
}
});
}
// e MediaRecorder.stop() method
// to stop the recording when the stop button is pressed
stopRecord() {
// callback for onStop function
this.recordOnStop();
console.log( this.state.mediaRecorder.state);
console.log("recorder stopped");
}
/***** Grabbing and using the blob *****/
// stop event finalize our blob there
// from all the chunks we have received:
recordOnStop() { // event handler stop of recording
console.log("recorder stopped");
var blob = new Blob(this.chunks, { 'type': "audio/ogg ; codecs=opus" })
this.chunks = [];
// creates a DOMString containing a URL representing
// the object given in the parameter
this.setState({ audioURL: window.URL.createObjectURL(blob)})
}
handleDelete(e) {
var evtTgt = e.target;
evtTgt.parentNode.parentNode.removeChild(evtTgt.parentNode);
}
render() {
return (
<div>
<button className="dashboard">
Dashboard</button>
<span className="controlsBar">
<button onClick={this.startRecord} className="start">
Start recording
</button>
<button onClick={this.stopRecord} className="stop">
Stop recording</button>
<button onClick={this.deleteRecord} className="delete">
Delete recording
</button>
</span>
</div>
)
}
}
export default RecorderAPI;
【问题讨论】:
-
据此 (developer.mozilla.org/en-US/docs/Web/API/MediaRecorder/start) mediaRecorder.start() 函数不返回任何内容。为什么要通过 this.setState 更新 mediaRecorder 对象并返回 mediaRecorder.start() 的值?另外,您确定要在 componentDidMount 回调中设置 mediaRecorder 对象吗?
-
嗨,Ricardo,我的目标是直接在构造函数中设置我的 mediaDevices API,以使我的 API 线路与组件的不同方法保持一致。
-
理想的应该是在我的 componentDidMount() 函数中创建 onClick 函数,以便在单击元素时调用它们。我目前正在尝试,希望它能在 ReactJS 上运行。如果你查看原始代码,就会有很多 onClick 回调。 github.com/mdn/web-dictaphone/edit/gh-pages/scripts/app.js
标签: reactjs api audio recording