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

Live Stream IP Camera (no audio) to YouTube using FFmpeg

Live Stream Bitrates

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

Stream Command
ffmpeg -f lavfi -i anullsrc -rtsp_transport udp -i "rtsp://username:password@ip_address:554/cam/realmonitor?channel=1&subtype=0" -force_key_frames "expr:gte(t,n_forced*2)" -vf scale=1920:1080 -reorder_queue_size 4000 -max_delay 10000000 -vcodec libx264 -b:v 4500k -pix_fmt yuv420p -f flv "<youtube_stream_url>"
Use Hardware Encoding on Mac
Change libx264 to h264_videotoolbox
Use Hardware Encoding on Windows (Intel processor, QuickSync)
Change libx264 to h264_qsv

Raspberry Pi 4 Ubuntu 20.04 LTS Dual Desktop Environment

CanaKit Raspberry Pi 4 (4GB) Starter Kit (Amazon Affiliate)
US: https://amzn.to/3azJgrW
UK: https://amzn.to/2JdMq9o
CA: https://amzn.to/3bwiRvY
ES: https://amzn.to/2T06LnM (similar)
FR: https://amzn.to/3cvIZrs (similaire)
IT: https://amzn.to/2Ar74Sj (simile)
DE: https://amzn.to/2AqfWHQ (ähnlich)
IN: https://amzn.to/3ey6fWj
AU: https://amzn.to/2VTUt1C
NL: https://amzn.to/3f5NdsD (vergelijkbaar)

Raspberry Pi Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPvIdR5BEqDgO7DsGAla_AZ

Update Package List
sudo apt update
Install Lubuntu
sudo apt install lubuntu-desktop