biansemao

Results 2 comments of biansemao
trafficstars

2019-09-16 10:02:02.503 8903-9397/com.mh.webappStart E/MediaCodec: configure failed with err 0xfffffc0e, resetting.. 看下是不是你的视频width,height属性,是不是有问题? MediaFormat里面的width,height属性,只接受2的倍数的。不然就会报Android android.media.MediaCodec$CodecException: Error 0xfffffc0e 错误 解决方法: 在MediaFormat outputFormat = MediaFormat.createVideoFormat(MIME_TYPE, resultWidth, resultHeight);之前做判断,宽高改为2的倍数。 改为 if ((resultWidth & 1) == 1)...

看下是不是你的视频width,height属性,是不是有问题? MediaFormat里面的width,height属性,只接受2的倍数的。不然就会报Android android.media.MediaCodec$CodecException: Error 0xfffffc0e 错误 解决方法: 在MediaFormat outputFormat = MediaFormat.createVideoFormat(MIME_TYPE, resultWidth, resultHeight);之前做判断,宽高改为2的倍数。 改为 if ((resultWidth & 1) == 1) { resultWidth--; } if ((resultHeight & 1) == 1) {...