Skip to content

Instantly share code, notes, and snippets.

@saippuakauppias
Last active January 15, 2020 21:41
Show Gist options
  • Save saippuakauppias/89b9acce52328d0fc635 to your computer and use it in GitHub Desktop.
Save saippuakauppias/89b9acce52328d0fc635 to your computer and use it in GitHub Desktop.
create video from one image (short file size, long video) [ffmpeg]
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