Last active
December 31, 2015 12:39
-
-
Save tsbits/7987317 to your computer and use it in GitHub Desktop.
Video to frame player video
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
//FFMPEG PART | |
ffmpeg -i "path/to/the/video.ext" -an -f image2 -q:v 8 "path/to/destination/folder/%d.ext" | |
-> -q:v n ( quality : n = int 1 -> 32 where 1 is best than 32 ) | |
//FRAME PLAYER PART ( http://vagnervjs.github.io/frame-player/ ) | |
cd converter | |
node app.js x y folder/to/imgs/ json/video.json | |
-> x : startImgNumber, y : endImgNumber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment