Section: ***postprocessor or postprocessors (plural)?***. How-to ensure all video formats encountered are converted to mp4. #4918
Unanswered
earthyrock
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Same question. This not works for me: extractor:
reddit:
client-id: <HIDDEN>
user-agent: <HIDDEN>
postprocessor:
gif to mp4:
name: exec
async: false
command: ffmpeg -i {} {}.mp4 && rm {}
event: after
filter: extension == 'gif' this works: extractor:
reddit:
client-id: <HIDDEN>
user-agent: <HIDDEN>
postprocessors:
- name: exec
async: false
command: ffmpeg -i {} {}.mp4 && rm {}
event: after
filter: extension == 'gif' |
Beta Was this translation helpful? Give feedback.
0 replies
-
Not sure why that weird YAML-style formatting is used here, but the postprocessor for a specific extractor is defined like this: {
"extractor":
{
"reddit":
{
"subreddit":
{
},
"postprocessors": ["nonpicsort"]
}
}
} So, it's "postprocessorS". "postrpocessor" is defined like this:
You can define postprocessors there, and then activate/use them from any (sub-)extractor options. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the next section is my gallery-dl.conf which has done well for me to-date. ;) As issues have occurred I've researched and kinda plugged-in what appeared to resolve my issue-of-the-moment. I do wonder at how to properly implement the two sections:
"postprocessor":
&
"extractor": > "postprocessors":
Are they the same?
Are they in the wrong place?
In my setup, are they actually setup properly to effect anything, lol?
Ultimately my goal is to ensure all video formats encountered are converted to mp4, regardless of the site found (avi, gif, m4v, mkv, mov, webm).
Discussion continues beyond the below gallery-dl.conf.
I know nothing in the above addresses the below. In the next section is the output I am getting from a Reddit link. Note the "error" from that output, immediately below.
Discussion continues past the below.
I just did some copy/pasting of what I think such might look like, but where do I plug it in? Forgive me if it's just a baddddd job..
"postprocessor": ?
"extractor": > "postprocessors": ?
Beta Was this translation helpful? Give feedback.
All reactions