Cheap High Capacity microSD Card Holder

Aluminum microSD card case capacity 24: http://ebay.us/pNNpSQ (eBay Affiliate)

DiMeCard-SD: 2 SD + 4 microSD Memory Card Holder (Amazon Affiliate)
US: https://amzn.to/2Z5QFv7
CA: https://amzn.to/31M2t8T
UK: https://amzn.to/3fcfxs9
ES: https://amzn.to/2BLrcPT
FR: https://amzn.to/31SzuAm
IT: https://amzn.to/38B58DD
IN: https://amzn.to/2BQVsJl (similar)
DE: https://amzn.to/2ZKkyBD
AU: https://amzn.to/2ZImA58

Rechargeable Battery Quick Tips

AmazonBasics AA High-Capacity Ni-MH Rechargeable Batteries (2400 mAh), Pre-charged – Pack of 8 (Amazon Affiliate)
US: https://amzn.to/2B4xqtN
UK: https://amzn.to/3duxtfR
CA: https://amzn.to/3duiZf
ES: https://amzn.to/31aoYnJ
FR: https://amzn.to/37VkjqO
IT: https://amzn.to/2CBjdFl
DE: https://amzn.to/2NqYshz
IN: https://amzn.to/37VGuxa

La Crosse Technology BC1000 Alpha Power Battery Charger (Amazon Affiliate)
US: https://amzn.to/2Z8E5vd
UK: https://amzn.to/31bbYho
CA: https://amzn.to/2No8qR3
ES: https://amzn.to/384q0D1
FR: https://amzn.to/3i0fAJ1
IT: https://amzn.to/2YtPh6i
DE: https://amzn.to/2By8uuT
IN: https://amzn.to/3hYg2ry
AU: https://amzn.to/2NqxC9l

FFmpeg: Timelapse from Video, Speed Up vs Every n-th Frame

I go over two techniques in FFmpeg to turn a long video into a “timelapse”. One is to speed up the video. The second is to take every n-th frame of video. The second method simulates a traditional timelapse where you record a series of photos. I go over the pros and cons of each technique.

FFmpeg playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOPDZ71Khzt5PX4X4j6flkg

Speed Up Video 500x
ffmpeg -i sky.mp4 -vf "setpts=0.002*PTS,crop=in_w:in_w*9/16,scale=1920:1080" -vcodec libx264 -b:v 10000k -r 60 -pix_fmt yuv420p sky_speedier.mp4
Time to Execute (using hardware acceleration on Mac)
real	19m49.420s
user	52m21.576s
sys	0m14.403s
External Link: Speed up video

https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video

Use every 500th Frame
ffmpeg -i sky.mp4 -vf "select='not(mod(n,500))',setpts=N/FRAME_RATE/TB,crop=in_w:in_w*9/16,scale=1920:1080" -vcodec libx264 -b:v 10000k -r 60 -pix_fmt yuv420p sky_virtual_timelapse.mp4
Time to Execute (using hardware acceleration on Mac)
real	11m21.001s
user	42m2.315s
sys	0m21.926s
External Link: Create timelapse from video

https://stackoverflow.com/questions/41902160/create-time-lapse-video-from-other-video

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 Remote SDR Server with Soapy Remote

In this video, I install Soapy Remote SDR server on a Raspberry Pi 4 with an RTL-SDR Blog V3 USB dongle. I then connect to the server on a separate computer running CubicSDR.

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)

RTL-SDR Blog V3 R820T2 (Amazon Affiliate)
US: https://amzn.to/2z4hpDu
CA: https://amzn.to/3e3Ln8K (dongle only)
UK: https://amzn.to/2AuUdin
IN: https://amzn.to/2ZNJHez
AU: https://amzn.to/3iDbW8l

Software Defined Radio Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPHRD_m-N5pzrPPdkXa8Fsf

Update Package List
sudo apt update
Install Soapy Remote SDR Server
sudo apt install soapyremote-server
Check if SoapySDRServer is running
ps ax|grep -i soap
Find IP Address
ip a