Enable and Connecting to Rsync on a Synology NAS

Synology Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPL8Yx7FxnY6xKxcMiVWkkJ

SSH/Rsync Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZOTeKFxYmZZk91zfZYZASvC

Synology DS918+ (Amazon Affiliate)
US: https://amzn.to/2EECW3Q
UK: https://amzn.to/35BD9jW
CA: https://amzn.to/35ILfYs
DE: https://amzn.to/2VsP561
ES: https://amzn.to/3eIwJWc
FR: https://amzn.to/2VqZHCo
IT: https://amzn.to/2XEQC8T
IN: https://amzn.to/2Th9pom

(x4) WD RED WD40EFRX CMR* (Amazon Affiliate)
US: https://amzn.to/3ewSHvC
UK: https://amzn.to/354lcOk
CA: https://amzn.to/3l5syGK
DE: https://amzn.to/2IfafjF
ES: https://amzn.to/2TXqa99
FR: https://amzn.to/35178VF
IT: https://amzn.to/32fNx28
IN: https://amzn.to/3l5X6bh
AU: https://amzn.to/2JCUyn7

* Please verify that you have chosen the WD40EFRX (CMR) model when ordering. Also check that you got the correct drives when your order arrives. Avoid the WD40EFAX SMR models!

Crucial 16GB (8GBx2) RAM CT2K8G3S186DM (Amazon Affiliate)
US: https://amzn.to/35TmsB1
UK: https://amzn.to/35Pvsa5
CA: https://amzn.to/2thVWUy
ES: https://amzn.to/2VgoecJ
FR: https://amzn.to/2NoBZSv
IT: https://amzn.to/2VgwIkb
DE: https://amzn.to/3avuVwe (HX318LS11IB/8)
IN: https://amzn.to/37Y1Fgz
AU: https://amzn.to/2CGypRH

Backup Up One Synology NAS to Another Using Hyper Backup

In this video I go over the process of backing up one Synology NAS to another using Hyper Backup and Hyper Backup Vault.

Synology Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPL8Yx7FxnY6xKxcMiVWkkJ

Ubiquiti Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZMvlAWtV85XcJ1O48vo6N1O

Synology DS918+ (Amazon Affiliate)
US: https://amzn.to/2EECW3Q
UK: https://amzn.to/35BD9jW
CA: https://amzn.to/35ILfYs
DE: https://amzn.to/2VsP561
ES: https://amzn.to/3eIwJWc
FR: https://amzn.to/2VqZHCo
IT: https://amzn.to/2XEQC8T
IN: https://amzn.to/2Th9pom

(x4) WD RED WD40EFRX CMR* (Amazon Affiliate)
US: https://amzn.to/3ewSHvC
UK: https://amzn.to/354lcOk
CA: https://amzn.to/3l5syGK
DE: https://amzn.to/2IfafjF
ES: https://amzn.to/2TXqa99
FR: https://amzn.to/35178VF
IT: https://amzn.to/32fNx28
IN: https://amzn.to/3l5X6bh
AU: https://amzn.to/2JCUyn7

* Please verify that you have chosen the WD40EFRX (CMR) model when ordering. Also check that you got the correct drives when your order arrives. Avoid the WD40EFAX SMR models!

Crucial 16GB (8GBx2) RAM CT2K8G3S186DM (Amazon Affiliate)
US: https://amzn.to/35TmsB1
UK: https://amzn.to/35Pvsa5
CA: https://amzn.to/2thVWUy
ES: https://amzn.to/2VgoecJ
FR: https://amzn.to/2NoBZSv
IT: https://amzn.to/2VgwIkb
DE: https://amzn.to/3avuVwe (HX318LS11IB/8)
IN: https://amzn.to/37Y1Fgz
AU: https://amzn.to/2CGypRH

Using FFmpeg to Convert JPEG Images To and From MJPEG (Losslessly)

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

Convert JPEG Timelapse to mp4: https://youtu.be/6dLm59_Eyi0

Convert JPEG Image Sequence to MKV (with MJPEG encoding)
ffmpeg -framerate 30 -pattern_type glob -i 'timelapse/*.JPG' -codec copy out.mkv
Convert MKV (with MJPEG encoding) to JPEG Image Sequence
ffmpeg -i out.mkv -vcodec copy timelapse/pic%d.jpg
Extract Single JPEG Image from MKV (with MJPEG encoding)
ffmpeg -ss 00:00:00.03 -i out.mkv -vframes 1 -codec copy output.jpg

Creating a 2×2 Security Camera Matrix using FFmpeg

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

Amcrest Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZNYE224qh9K0hhaaIxU-rta

Set Video Sources as Shell Variables
VID_TL_CAMERA1="rtsp://user:password@ip_address:554/cam/realmonitor?channel=1&subtype=1"
VID_TR_CAMERA2="rtsp://user:password@ip_address:554/cam/realmonitor?channel=1&subtype=1"
VID_BL_CAMERA3="rtsp://user:password@ip_address:554/cam/realmonitor?channel=1&subtype=1"
VID_BR_CAMERA4="rtsp://user:password@ip_address:554/cam/realmonitor?channel=1&subtype=1"
Create 2×2 Video Matrix
ffmpeg -i $VID_TL_CAMERA1 -i $VID_TR_CAMERA2 -i $VID_BL_CAMERA3 -i $VID_BR_CAMERA4 -reorder_queue_size 4000 -max_delay 10000000 -filter_complex "[0:v][1:v]hstack[t];[2:v][3:v]hstack[b];[t][b]vstack[v]" -map "[v]" -f h264 -vcodec libx264 -b:v 2500k pipe:1|ffplay -i pipe:0
Create Side by Side Video Matrix
ffmpeg -i $VID_TL_CAMERA1 -i $VID_TR_CAMERA2 -reorder_queue_size 4000 -max_delay 10000000 -filter_complex "[0:v][1:v]hstack[v]" -map "[v]" -f h264 -vcodec libx264 -b:v 2500k pipe:1|ffplay -i pipe:0