Skip to content

Instantly share code, notes, and snippets.

@fukawi2
Forked from daz/google-earth-studio-ffmpeg.sh
Created September 2, 2019 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fukawi2/2635d278fd718b2dc463a4ee46643a38 to your computer and use it in GitHub Desktop.
Save fukawi2/2635d278fd718b2dc463a4ee46643a38 to your computer and use it in GitHub Desktop.
Google Earth Studio stitch image sequence with FFmpeg
#!/bin/bash
set -eu
FRAMERATE="$1"
ffmpeg -framerate $FRAMERATE -pattern_type glob -i '*.jpeg' -c:v libx264 -pix_fmt yuv420p output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment