FMS FLV to mp3/aac/wav

我是研究僧i 提交于 2019-12-24 07:48:28

问题


How can I decode a FLV's audio if it's recorded from a live stream using Flash Media Server and uses NellyMoser codec?

I'm writing a script that process several FLVs, using FFmpeg, so I need a command line solution.

Any ideas?


回答1:


This should work for you, since NellyMoser is supported by FFmpeg.
1. Using mp3

ffmpeg -i yourinput.flv -vn -acodec libmp3lame output.flv


2. Using AAC (switch aac with libfaac depending on which you have loaded)

ffmpeg -i yourinput.flv -vn -acodec libfaac output.mp4

I'm assuming of course you dont care about video.



来源:https://stackoverflow.com/questions/3655089/fms-flv-to-mp3-aac-wav

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!