码迷,mamicode.com
首页 > 其他好文 > 详细

wavesurfer fluent-ffmpeg提取音频

时间:2018-11-06 18:16:08      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:this   file   end   progress   ror   err   copy   应用   format   

我试图得到一个视频音频文件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提取音频

标签:this   file   end   progress   ror   err   copy   应用   format   

原文地址:http://blog.51cto.com/14021402/2313579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!