如何将 mp4 文件转换为 Wav 音频文件?

Whow to convert mp4 file in Wav audio file?

我想转换 .mp4 文件(只有音频 e.g.) download from the reddit API to assemble it with its corresponding video(没有声音)。

在node.js下有没有办法做到这一点?

您可以将 .mp4 音频和视频文件与 fluent-ffmpegffmpeg 命令层合并为 Node.js 避免您将其作为子进程启动。

const ffmpeg = require('fluent-ffmpeg');

ffmpeg()
  .input('audio.mp4', 'video.mp4')
  .output('out.mp4')
  .run();

如果您想将音频输出转换为 wav 音频,只需指定 .wav 扩展名,ffmpeg 将为您转换。

.output('out.wav')