问题
我一直试图弄清楚为什么这在一段时间内不起作用。我已经使用了很多示例代码,但是我仍然无法弄清楚。
代码
takeVideo() {
console.log('started to take video');
this.camera.capture({
audio: true,
mode: Camera.constants.CaptureMode.video,
target: Camera.constants.CaptureTarget.disk
}).then((data) => {
this.setState({ path: data.path });
console.log(data);
}).catch((err) => console.log(err));
}
stopVideo() {
this.camera.stopCapture();
console.log(this.state.path);
}
renderCamera() {
return (
<View>
<Camera
ref={(cam) => {
this.camera = cam;
}}
style={styles.preview}
aspect={Camera.constants.Aspect.fill}
captureTarget={Camera.constants.CaptureTarget.disk}
captureMode={Camera.constants.CaptureMode.video}
>
<TouchableHighlight
style={styles.capture}
onPressIn={this.takeVideo.bind(this)}
onPressOut={this.stopVideo.bind(this)}
underlayColor="rgba(255, 255, 255, 0.5)"
>
<View />
</TouchableHighlight>
</Camera>
</View>
);
}
什么不工作
当我console.log(this.state.path)
输出时false
,这意味着它不会改变并且视频没有录制。
信息
- 这是在IOS
- 如果我更改为( => )这将有效
Camera.constants.CaptureMode.video
Camera.constants.CaptureMode.still
.video
.still
- RN版本:
react-native-cli: 2.0.1
react-native: 0.44.0
回购
我发现这个 repo 试图做与我几乎完全相同的事情并且遇到了同样的问题。这是回购:https ://github.com/MiLeung/record