Nintendo Switch Screen Capture on Mac with Cheap HDMI USB Capture Card

Audio/Video Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZN4KVIf7ad7Y1CBlosKdZkd

HDMI to USB Video Capture Card 1080P: http://ebay.us/Mv0snK (eBay Affiliate)

HDMI to USB Video Capture Card 1080P (Amazon Affiliate)
US: https://amzn.to/3cwUqjv
UK: https://amzn.to/2DD2QZh
CA: https://amzn.to/2PwBNS0
ES: https://amzn.to/30w07tM
FR: https://amzn.to/31sG92a
IT: https://amzn.to/30yMOsz
DE: https://amzn.to/2XD83aO
AU: https://amzn.to/3a3ItQZ

4K 1×2 HDMI Splitter by OREI – 1 Port to 2 HDMI Display Duplicate/Mirror – Powered Splitter Ver 1.4 Certified for Full HD 1080P High Resolution & 3D Support (One Input To Two Outputs) – USB Powered (Amazon Affiliate)
US: https://amzn.to/3ktPDlS
UK: https://amzn.to/3gsluCv (similar)
CA: https://amzn.to/3qAgjoB
ES: https://amzn.to/3gmYq8e (similar)
FR: https://amzn.to/36Qe34J (similaire)
IT: https://amzn.to/33QNg6C (simile)
DE: https://amzn.to/2JVVQKn (ähnlich)
IN: https://amzn.to/3gjsAcz
AU: https://amzn.to/2JYXLhe

Tech Bench Build: WALI Dual Monitor Mount (Ep. 3)

WALI Free Standing Dual LCD Monitor Fully Adjustable Desk Mount Fits 2 Screens up to 27 inch, 22 lbs. Weight Capacity per Arm, with Grommet Base (MF002), Black (Amazon Affiliate)
US: https://amzn.to/3pVEkWX
UK: https://amzn.to/3m3WnXT
CA: https://amzn.to/3m18jtm
AU: https://amzn.to/2LgROg1

Kreg Universal Bench Components Idea List* (Amazon Affiliate)
US: https://amzn.to/32Os5S0
* I used 64″ and 28″ rails in my project. Hover over the images on the link to see the sizes.

Tech Bench Build Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPodl2JAm5Iy9TSSvC1Smal

Installing a Tempered Glass Screen Protector on a Nintendo Switch

[3 Pack]Hestia Goods Tempered Glass Screen Protector for Nintendo Switch – Transparent HD Clear Anti-Scratch Screen Protector for ** Nintendo Switch ** (Amazon Affiliate)
US: https://amzn.to/2USbl8g

[4 Pack] Hestia Goods for Nintendo Switch lite Tempered Glass Screen Protector – Transparent HD Clear Anti-Scratch Screen Protector for ** Nintendo Switch Lite ** (Amazon Affiliate)
US: https://amzn.to/2UNZiZw

Installing FFmpeg on macOS Catalina (Updated Late 2020)

FFmpeg download: https://ffmpeg.org

Adding the path when using Bash: https://www.rickmakes.com/installing-ffmpeg-on-a-mac-without-macports/#bash_profile

FFmpeg Notes: https://www.rickmakes.com/ffmpeg-notes/

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

Go to Downloads Folder
cd ~/Downloads
List Files
ls
Check if /usr/local/bin exists
ls /usr/local/bin
Create /usr/local/bin (if it doesn’t exist)
sudo mkdir -p /usr/local/bin
Copy Binaries to /usr/local/bin
sudo cp ff* /usr/local/bin
Remove Binaries from Quarantine
sudo xattr -dr com.apple.quarantine /usr/local/bin/ff*
Check PATH
echo $PATH
Go to Home Directory
cd
Add /usr/local/bin to PATH (if needed)
touch ~/.zshrc
open -e ~/.zshrc
Contents of .zshrc File
path+=/usr/local/bin
Load .zshrc Immediately
source .zshrc
Run ffmpeg, ffprobe, ffplay
ffmpeg
ffprobe
ffplay
Check Shell (if you are having trouble)
echo $SHELL

If you get “/bin/bash”, see these instructions.