Skip to content

Instantly share code, notes, and snippets.

@tw-Frey
Created July 9, 2018 03:20
Show Gist options
  • Select an option

  • Save tw-Frey/046e65df1d80d9f493ace4611804a70d to your computer and use it in GitHub Desktop.

Select an option

Save tw-Frey/046e65df1d80d9f493ace4611804a70d to your computer and use it in GitHub Desktop.
FFMpeg do SlideShow
原始影片→每5秒小圖(160x90)
ffmpeg -i 影片檔名.mp4 -vf "fps=1/5,scale=160:90" preview%04d.jpg
眾小圖→slideshow video
ffmpeg -framerate 1 -i preview%04d.jpg -vf fps=1 -x264-params keyint=1:min-keyint=1:scenecut=-1 preview.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment