Skip to content Skip to sidebar Skip to footer

Video Compression Issue In Samsung S5 Device

I trying to compress video. it's working fine in all device but in Samsung S5 it gives below error. Error Log : android.media.MediaCodec$CodecException: Error 0xffffec77 below have

Solution 1:

I had this issue on Samsung Note 4 device and UHD video option (3840x 2160). After long trying it doesn't throw exception only with these width and height values:

resultWidth = 800;resultHeight = 600;

or

resultWidth = 640;resultHeight = 480;

You can set these values to the this code line:

MediaFormatoutputFormat= MediaFormat.createVideoFormat(MIME_TYPE, resultWidth, resultHeight);

Post a Comment for "Video Compression Issue In Samsung S5 Device"