0

我尝试使用react-native-ffmpeg以 react-native-ffmpeg 压缩视频。

我正在使用react-native-image-picker挑选视频。

我尝试使用命令-y -i ${inputVideo} -vcodec h264 -acodec mp3 ${finalVideo}

但它失败了rc:1。我的代码:-

 RNFFmpeg.execute(
            str_cmd,
        ).then(result => {
             if (result.rc === 0) {
                 console.log("successfully compressed");
             } else {
                 console.log("error",result);
             }
          });

谢谢!

4

1 回答 1

1

如果我没记错的话,您必须将输入视频包含到您的应用程序的目录中。

您应该可以使用react-native-fs.

这是示例项目中的相关代码。react-native-ffmeg

于 2021-07-22T05:11:36.217 回答