3

问题

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

代码

 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.videoCamera.constants.CaptureMode.still.video.still
  • RN版本: react-native-cli: 2.0.1 react-native: 0.44.0

回购

我发现这个 repo 试图做与我几乎完全相同的事情并且遇到了同样的问题。这是回购:https ://github.com/MiLeung/record

4

1 回答 1

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

于 2017-08-21T07:06:32.097 回答