ramkumar5035
ramkumar5035

Reputation: 359

How to select video from gallery and crop/resize it just like image cropping in android

How to select video from gallery and crop/resize it just like image cropping in android. I am searching it for last two days. But i didnt find any samples or example. If you have any idea or samples, pls suggest me.

Thank You.

Upvotes: 9

Views: 3638

Answers (1)

Dmytro Danylyk
Dmytro Danylyk

Reputation: 19788

On android 4.0 + you can use TextureView

Basic idea is to use Matrix object.

Matrix matrix = new Matrix();
matrix.setScale(scaleX, scaleY, pivotPointX, pivotPointY);
mTextureView.setTransform(matrix);

Full article available here.

Upvotes: 2

Related Questions