Skip to content

Instantly share code, notes, and snippets.

@novogrammer
Last active December 21, 2015 05:22
Show Gist options
  • Save novogrammer/e3450f491b285eeae707 to your computer and use it in GitHub Desktop.
Save novogrammer/e3450f491b285eeae707 to your computer and use it in GitHub Desktop.
Photoshopで書き出した連番PNGをiPhoneとかでも読めるMP4にするやつ
#!/bin/bash
ffmpeg -r 15 -i "./input%04d.png" -an -r 15 -pix_fmt yuv420p -vcodec libx264 -qscale:v 0 ./output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment