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

wavesurfer fluent-ffmpeg提取音頻

console 好的 load pat const pla 視頻 pro erro

我試圖得到一個視頻音頻文件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似乎不能夠工作。

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

wavesurfer fluent-ffmpeg提取音頻