SimpleVideoEditor
SimpleVideoEditor copied to clipboard
Changing the aspect ratio
// todo: idk, change it later to 16:9, 3:4, 1:1 ... ... via some method I guess
I saw your todo so are you coming with this or not? I really need that 16:9 ratio
or removing the crop?
Hello. Sorry for my late reply. You can download the library and make changes in VideoEditorPresenter Line number 404. I had hardcoded aspect ratio = 4:3, just change it into 16:9 and that should do the work.
I have changed the size and it is working.
public Mp4Composer size(int width, int height) {
this.outputResolution = new Size(width, height);
return this;
}