Last active
September 7, 2019 07:54
-
-
Save allanlei/92efb7cdbb661b5cd5f8033f0ebe5089 to your computer and use it in GitHub Desktop.
FFmpeg Filtergraph to fade in a video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i source.mp4 -filter_complex \ | |
"[0:v]fade=type=in:start_time=1:duration=8[fadein]" \ | |
-map "[fadein]" fadein.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment