ffmpeg -framerate 30 -f image2 -i images_%05d.JPG -r 30 -vcodec libx264 -pix_fmt yuv420p -crf 20 output.mp4
-framerate 30input images at 30fps-f image2process the input as images-i blahblahblahinput-r 30output 30fps
| //nesting thens | |
| casper.then(function () { | |
| this.log('THEN #1', 'info', 'then'); | |
| this.then(function () { | |
| this.log('THEN #2', 'info', 'then'); | |
| this.then(function () { | |
| this.log('THEN #3', 'info', 'then'); | |
| }); | |
| this.log('THEN #4', 'info', 'then'); |
| public static int randomInt(int min, int max) { | |
| return (int) (Math.random() * (max - min + 1)) + min; | |
| } |
If you want to follow along with the talk, you'll need to get some stuff set up ahead of time:
git in Terminal (on Mac) or in Powershell or Git Bash (on Windows).git in Terminal and it will walk you through everything you need to do if it's not already set up.PATH environment variable.| using System; | |
| using ServiceStack.Text; | |
| enum Subset | |
| { | |
| Zero, | |
| } | |
| enum Superset | |
| { | |
| Zero, |