Created
October 18, 2018 03:19
-
-
Save elleryq/3a331ba65eb162bd01a2a66e1a1dca4d to your computer and use it in GitHub Desktop.
製作縮時影片
This file contains hidden or 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
| #!/bin/bash | |
| # 使用 streamer 以 webcam 抓圖,存為 0000.jpeg ... 40000.jpeg | |
| # 再使用 avconv 將圖片轉換為影片 | |
| streamer -o 0000.jpeg -s 352x288 -j 100 -t 4000 -r 1 | |
| avconv -r 10 -i %04d.jpeg -r 10 -vcodec libx264 -crf 20 -g 15 timelapse.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment