Using a Cheap Amazon Masonry Hole Saw on Cinder Block

Using a Cheap Amazon Masonry Hole Saw: https://youtu.be/Vam4XEAkyDU

Hanperal 65mm SDS Plus Shank Hole Saw Cutter Concrete Cement Stone Wall Drill Bit (Amazon Affiliate)
US: https://amzn.to/2KKDPex
UK: https://amzn.to/2NqfxZI
CA: https://amzn.to/383mNT0
AU: https://amzn.to/2Zwt8DX

5/16″ SDS bit long (Amazon Affiliate)
US: https://amzn.to/2Z6wafQ
UK: https://amzn.to/2NrdnJ1
CA: https://amzn.to/35Q1S4s

1/4″ SDS bits (Amazon Affiliate)
US: https://amzn.to/31KpaHj
UK: https://amzn.to/2tYdzsB
CA: https://amzn.to/2ToLS6W

HATTEKER USB Rechargeable Beard Trimmer Attachment Help

HATTEKER Beard Trimmer Kit For Men Cordless Mustache Trimmer Hair Trimmer Groomer Kit Precision Trimmer Nose Hair Trimmer Waterproof USB Rechargeable 5 In 1 (Amazon Affiliate)
US: https://amzn.to/2LVGfbS
UK: https://amzn.to/3gd2ebE
CA: https://amzn.to/36UBgAy
ES: https://amzn.to/2TyvjVk
FR: https://amzn.to/2WXx5Bo
IT: https://amzn.to/2zovmMv
DE: https://amzn.to/2TzKEoq
IN: https://amzn.to/3fe7jzy
AU: https://amzn.to/3gi1ukG

Create Timelapse from IP Camera using cURL/Wget and FFmpeg

Learn how to use the command line utilities of cURL, Wget and FFmpeg to download images from an Amcrest IP camera and turn them into a timelapse video.

Download Images with Curl
while :; do curl --digest -o "$(date +"%Y%m%d%H%M%S").jpg" http://username:password@ip_address/cgi-bin/snapshot.cgi; sleep 1; done
Download Images with wget
while :; do wget -O "$(date +"%Y%m%d%H%M%S").jpg" http://username:password@ip_address/cgi-bin/snapshot.cgi; sleep 1; done
Download Images with Curl (losslessly shrink with jpegoptim)
while :; do curl --digest http://username:password@ip_address/cgi-bin/snapshot.cgi --output - | jpegoptim --strip-all --stdin > "$(date +"%Y%m%d%H%M%S").jpg"; sleep 1; done
Recommended Video Settings

https://support.google.com/youtube/answer/1722171?hl=en

Turn Image Sequence into Video
ffmpeg -framerate 30 -pattern_type glob -i '*.jpg' -vf crop=in_w:in_w*9/16,scale=1920:1080 -c:v libx264 -b:v 10000k -r 30 -pix_fmt yuv420p out.mp4
Use Hardware Encoding on Mac
Change libx264 to h264_videotoolbox
Use Hardware Encoding on Windows (Intel processor, QuickSync)
Change libx264 to h264_qsv