Add vflip argument to GIFProfile (#154)

This commit is contained in:
Steven van den Broek
2021-01-03 11:45:01 +01:00
committed by GitHub
parent 3f05f416b6
commit b6dcfde772

View File

@@ -5,6 +5,6 @@ class GIFProfile : VideoWriterProfile() {
override val fileExtension = "gif"
override fun arguments(): Array<String> {
return arrayOf("-vf", "split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse=dither=none:diff_mode=rectangle")
return arrayOf("-vf", "split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse=dither=none:diff_mode=rectangle,vflip")
}
}