我尝试使用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);
}
});
谢谢!