-
i am using "--ugoira-conv-lossless" this command it create webm, is their command so i can create gif in highest quality |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Dec 14, 2021
Replies: 1 comment 2 replies
-
There isn't. You'll have to add custom The following as config file would automatically convert all Pixiv ugoira to gif: {
"extractor": {
"pixiv": {
"ugoira": true,
"postprocessors": ["ugoira-gif"]
}
},
"postprocessor": {
"ugoira-gif": {
"name": "ugoira",
"extension": "gif",
"ffmpeg-args": ["-filter_complex", "[0:v] split [a][b];[a] palettegen [p];[b][p] paletteuse"]
}
}
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There isn't. You'll have to add custom
ugoira
post processor setting in your config file and use that. For example this would create a gif with better colors.The following as config file would automatically convert all Pixiv ugoira to gif: