将图像编码为视频(Mediacodec)

时间:2016-08-03 17:19:08

标签: java android mediamuxer

我需要使用Mediacodec将一系列10位图编码成视频。我不想使用FFmpeg或Jcodec因为它非常慢。

我在互联网上搜索过,但似乎无法找到我可以修改的完整工作示例代码。

这是我尝试过的:

mMediaCodec = MediaCodec.createEncoderByType("video/avc");
mMediaFormat = MediaFormat.createVideoFormat("video/avc", 320, 240);
mMediaFormat.setInteger(MediaFormat.KEY_BIT_RATE, 125000);
mMediaFormat.setInteger(MediaFormat.KEY_FRAME_RATE, 15);
mMediaFormat.setInteger(MediaFormat.KEY_COLOR_FORMAT,       MediaCodecInfo.CodecCapabilities.COLOR_FormatYUV420Planar);
mMediaFormat.setInteger(MediaFormat.KEY_I_FRAME_INTERVAL, 5);
mMediaCodec.configure(mMediaFormat, null, null,    MediaCodec.CONFIGURE_FLAG_ENCODE);
mMediaCodec.start();
mInputBuffers = mMediaCodec.getInputBuffers();

 ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
 image.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream); //    image is the bitmap
  byte[] input = byteArrayOutputStream.toByteArray();

  int inputBufferIndex = mMediaCodec.dequeueInputBuffer(-1);
   if (inputBufferIndex >= 0) {
   ByteBuffer inputBuffer = mInputBuffers[inputBufferIndex];
   inputBuffer.clear();
   inputBuffer.put(input);
   mMediaCodec.queueInputBuffer(inputBufferIndex, 0, input.length, 0, 0);
   }

1 个答案:

答案 0 :(得分:0)

您的代码示例创建了一个期望YUV420图像缓冲区的编码器,但您正在为它提供PNG压缩数据(btw只是一种美化的ZIP文件格式,而不是图像表示格式)

您应该将每个位图' z像素从ARGB转换为YUV,并将该缓冲区提供给编码器。显然,它们应该与编码器设置中的框架宽度和高度相匹配。