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.
我已经从 Android 麦克风中捕获了音频数据,并通过 MediaCodec 对其进行了编码。
我的问题是:
如何使用 ffmpeg 将编码的 AAC 数据打包到 flv?
如果您只想将音频打包到 flv :
ffmpeg -i input.aac -c copy out.flv
如果你有一个视频轨道去:
ffmpeg -i input.mp4 -i input.aac -c copy out.flv