Convert wmv video file to mp4 video file with MediaMuxer and MediaCodec

I want to convert a .wmv video file to an mp4 video file. You can use MediaMuxer and MediaCodec classes

+3


source to share


1 answer


MediaMuxer is used to create .mp4 files. It is not a format converter.



If you have a way to decode .wmv in video frames and PCM audio stream, you can pass that data to MediaCodec encoders and feed it to MediaMuxer to create an output file.

0


source







All Articles