How do I convert .webm files downloaded from 4chan threads to .mp4 files? #5955
-
When i download a 4chan thread the files are in .webm format, is there a way to auto convert them to .mp4? |
Beta Was this translation helpful? Give feedback.
Answered by
mikf
Aug 12, 2024
Replies: 1 comment 7 replies
-
Use FFmpeg with an {
"extractor": {
"4chan": {
"postprocessors": [
{
"name": "exec",
"filter": "extension == 'webm'",
"command": ["ffmpeg", "-i", "{_path}", "{_path[:-5]}.mp4"]
},
{
"name": "exec",
"filter": "extension == 'webm'",
"command": "rm {_path}"
}
]
}
}
} |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because all your options are inside
extractor.twitter
.Try this config