-
-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pixiv.net - can't convert ugoira to both gif and webm simultaneously #5908
Comments
{
"extractor": {
"pixiv": {
"postprocessors": [
{
"name": "ugoira",
"extension": "webm",
"ffmpeg-args": ["-c:v", "libvpx-vp9", "-b:v", "0", "-crf", "30"]
}
]
}
}
} |
I tried with this one and it does download the webm or gif, but not both simultaneously. I have to change the text manually each time. |
|
Sorry, I initially misread your question. To convert to multiple different formats, you need to specify one post processor for each, and "postprocessors": [
{
"name": "ugoira",
"extension": "webm",
"keep-files": true,
"ffmpeg-args": ["-c:v", "libvpx-vp9", "-b:v", "0", "-crf", "30"]
},
{
"name": "ugoira",
"extension": "gif",
"keep-files": true,
"ffmpeg-args": ["-filter_complex", "[0:v] split [a][b];[a] palettegen [p];[b][p] paletteuse"]
}
] |
Thanks! It works now. |
@ForxBase So this issue can be closed then? |
not sure if this is the correct code. any correction to this?
The text was updated successfully, but these errors were encountered: