lalongooo / video-compressor

Video compressor based in the Telegram for Android app source code.
GNU General Public License v2.0
262 stars 88 forks source link

Video Green Issue #11

Open rahulr4 opened 8 years ago

rahulr4 commented 8 years ago

Hi, When i compressed a 3gp video of size 160 mb, it got compressed to 8 mb which is fine but there is a green line in the whole video at the bottom. Have anyone faced this issue and solved it ? screenshot_2016-02-13-10-36-36 1

lalongooo commented 8 years ago

What's the Android API Level you are running on this example?

dineshswaas commented 8 years ago
     int resultWidth = 960;
    int resultHeight = 640;

its work fine for me.

lalongooo commented 8 years ago

Thanks for the tip @dineshswaas! @rahulr4, have you given it a try?

jmbello commented 8 years ago

I was having this issue, until I tried @dineshswaas tip, thanks.

lalongooo commented 8 years ago

Hi @jmbello , glad to know that!

@rahulr4 have you tried @dineshswaas 's tip so I can close this?

amanflo commented 7 years ago
 int resultWidth = 960;
 int resultHeight = 640;

Worked for me!! Thanks