我正在尝试获取wavesurfer的视频音频文件,以便可以显示wave。我在快速应用中使用fluent-ffmpeg。
我有点喜欢它
app.get('/audio/:file', (req, res) => ffmpeg.audio(req, res))
const path = req.params.file
const file = path.replace('MP4', 'wav')
ffmpeg(path)
.noVideo()
.withAudioCodec('copy')
.toFormat('wav')
.on('progress', console.log)
.on('error', console.log)
.on('end',()=> res.sendFile(file))
.save(file)
然后在waveurfer
this.wavesurfer.load(encodeURI(`${LOCAL_SERVER}/audio/${video.file}`))
这似乎适用于较小的文件,但不适用于较大的文件。我试过流输出,但是waveurfer似乎无法使用它。
有什么办法可以解决这个问题吗?