1. 程式人生 > >wavesurfer fluent-ffmpeg提取音訊

wavesurfer fluent-ffmpeg提取音訊

我試圖得到一個視訊音訊檔案wavesurfer所以可以顯示波。 我用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)
然後在wavesurfer

this.wavesurfer.load(encodeURI(${LOCAL_SERVER}/audio/${video.file}))
這似乎與較小的檔案,但它不是與更大的檔案。 我試流輸出但是wavesurfer似乎不能夠工作。

知道在這個最好的方法嗎?