相机视频无法工作 - React Native

时间:2017-07-07 03:47:02

标签: ios node.js video react-native react-native-camera

问题

我一直试图弄清楚为什么这段时间不起作用。我使用了很多示例代码,但是我仍然无法弄明白。

代码

 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 =&gt; .still
  • ,则此有效
  • RN版本: react-native-cli: 2.0.1 react-native: 0.44.0

回购

我发现这个回购试图与我完全一样,并且遇到了同样的问题。这是回购:https://github.com/MiLeung/record

1 个答案:

答案 0 :(得分:0)

您的代码中的所有内容都可以,但是您错过了一件重要的事情。

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);
}

您在保存数据之前提取路径对象

试试这个:

this.camera.capture({
          audio: true,
          mode: Camera.constants.CaptureMode.video,
          target: Camera.constants.CaptureTarget.disk
}).then((data) => {
          this.setState({ path: data.path });
          console.log(this.state.path); // You should have your path set
          console.log(data);
}).catch((err) => console.log(err));

stopCapture函数告诉本机代码,停止录制和保存视频 - 可能需要一些时间,因此后立即执行this.state.path stopCapture不起作用。

有关详细信息,请查看https://developer.mozilla.org/pl/docs/Web/JavaScript/Reference/Global_Objects/Promise