Skip to content

Instantly share code, notes, and snippets.

@elleryq
Created October 18, 2018 03:19
Show Gist options
  • Save elleryq/3a331ba65eb162bd01a2a66e1a1dca4d to your computer and use it in GitHub Desktop.
Save elleryq/3a331ba65eb162bd01a2a66e1a1dca4d to your computer and use it in GitHub Desktop.
製作縮時影片
#!/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