Last active
January 15, 2020 21:41
-
-
Save saippuakauppias/89b9acce52328d0fc635 to your computer and use it in GitHub Desktop.
create video from one image (short file size, long video) [ffmpeg]
This file contains hidden or 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 -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 360 -crf 1 -vf "fps=1,scale=640:480" video.mp4 | |
# -i image.jpg | |
# image file | |
# -t 360 | |
# video time | |
# video.mp4 | |
# result video file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment