From b6dcfde7726c533b2f7aca59077001a18df95079 Mon Sep 17 00:00:00 2001 From: Steven van den Broek <30909373+Yvee1@users.noreply.github.com> Date: Sun, 3 Jan 2021 11:45:01 +0100 Subject: [PATCH] Add vflip argument to GIFProfile (#154) --- orx-video-profiles/src/main/kotlin/GIFProfile.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orx-video-profiles/src/main/kotlin/GIFProfile.kt b/orx-video-profiles/src/main/kotlin/GIFProfile.kt index 172d7710..8414a7ea 100644 --- a/orx-video-profiles/src/main/kotlin/GIFProfile.kt +++ b/orx-video-profiles/src/main/kotlin/GIFProfile.kt @@ -5,6 +5,6 @@ class GIFProfile : VideoWriterProfile() { override val fileExtension = "gif" override fun arguments(): Array { - 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") } -} \ No newline at end of file +}