Created
November 12, 2015 14:15
-
-
Save dominicthomas/90848d32a337290cd529 to your computer and use it in GitHub Desktop.
Small snippet of doing multiple filter calls on an ffmpeg command... using the android ffmpeg wrapper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmd.add("movie=" + imagePath + " [overlay]; " + | |
"[in] transpose=1 [a]; " + | |
"[a] scale=360:-1 [b]; " + | |
"[b] crop=360:360:" + String.valueOf(cropX) + ":" + String.valueOf(cropY) + " [c]; " + | |
"[c] [overlay] overlay=" + overlayX + ":" + overlayY + " [out]"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment