Skip to content

Commit

Permalink
Merge pull request #97 from immohanravi/master
Browse files Browse the repository at this point in the history
cleared a bug in ActivityTrimmer.java in line 586,
  • Loading branch information
a914-gowtham authored Jul 4, 2023
2 parents 93e323a + 07c8dcd commit fe45b5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ private String[] getCompressionCmd() {
//Dividing high resolution video by 2(ex: taken with camera)
else if (w >= 800) {
w = w / 2;
h = Integer.parseInt(height) / 2;
h = h / 2;
return new String[]{"-ss", TrimmerUtils.formatCSeconds(lastMinValue),
"-i", String.valueOf(filePath),
"-s", w + "x" + h, "-r", "30",
Expand Down

0 comments on commit fe45b5b

Please sign in to comment.