Installing an mSATA SSD in an (Older) Intel NUC

In this video I install an mSATA SSD in my Intel NUC. This NUC will have two SSDs. One will have Windows. The other will have Ubuntu.

Ultimate Intel NUC Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZNqgp0yXEWkhTdFm1ZkAt7h

Samsung 860 EVO mSATA: https://amzn.to/2t1ykzR (Amazon Affiliate

Optimize Command Line Batch Processing Using the Find Command

Find All Jpegs
find ./ -iname '*.jpg'
Find and Optimize all Jpegs
find ./ -iname '*.jpg' -exec jpegoptim -p {} \;
Create Hidden File to Track Date
touch .jpeg_crush
Create Optimization Script
nano jpeg_crush.sh
#!/bin/bash
find ./ -newer .jpeg_crush -iname '*.jpg' -exec jpegoptim -p {} \;
touch .jpeg_crush

Type control-o, control-x to exit.

Make Script Executable
chmod +x jpeg_crush.sh
Run Jpeg Crush
./jpeg_crush.sh

Stream a Mac Screen to a Raspberry Pi using FFmpeg

In this video I stream a Mac screen to a Raspberry Pi using FFmpeg. This could be used for remotely displaying a presentation. This does not transmit audio from the Mac.

Raspberry Pi (Amazon Affiliate)
US: https://amzn.to/2LpyVob
UK: https://amzn.to/2Z2inKX
CA: https://amzn.to/2y5yAUA
ES: https://amzn.to/3fSDhSS
FR: https://amzn.to/2LpurxT
IT: https://amzn.to/2T2VZNu
DE: https://amzn.to/3buHRmQ
IN: https://amzn.to/2B3PGTN

List Devices
ffmpeg -f avfoundation -list_devices true -i ""
FFmpeg Command on Mac
ffmpeg -f avfoundation -i "1" -vcodec h264_videotoolbox -realtime 1 -pix_fmt nv12 -b:v 5000k -f mpegts udp://ip_address_of_pi:1234
Command on Raspberry Pi
omxplayer --timeout 60 ip_address_of_mac:1234