Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前想编写一个程序,它可以使用 python 或 c++ 从 FLV 视频中提取音频。我不知道该怎么做?是否有某种教程或任何可以帮助我的东西?请帮我在这里学习。谢谢!
实际上你可以使用 MPlayer 来做到这一点,例如
mplayer video.flv -vo null -ao pcm:file=file.wav
因此,您可以将它与来自 python(或 C)的调用结合使用。另一种方法是使用MPlayer 内部使用的FFmpeg 。