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.
我想将 .wmv 视频文件转换为 mp4 视频文件。可以使用MediaMuxer和MediaCodec类吗?
MediaMuxer 用于创建 .mp4 文件。它不是格式转换器。
如果您有办法将 .wmv 解码为视频帧和 PCM 音频流,那么您可以将该数据提供给 MediaCodec 编码器,并将其引导到 MediaMuxer 以构建输出文件。