Last active
March 29, 2019 21:36
-
-
Save bearpaw/378333a6c7467dc177be53f020819643 to your computer and use it in GitHub Desktop.
ffmpeg
This file contains 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
# extract 24 frames per second | |
ffmpeg -i Peter-Jasko-solo-M-idzomer-2013.mp4 -r 24/1 frames/solo-dance-%04d.png | |
# generate video from images, -q 0 is the highest quality | |
ffmpeg -start_number 222 -i %d.png -q 0 dance_skeleton.avi | |
ffmpeg -framerate 10 -start_number 0 -i %06d.png -q 0 ../h36m_triangulation.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment