Get youtube video format/quality list
youtube-dl -F '<YOUTUBE_VIDEO_URL>'
Download an specific format/quality trought it ID
youtube-dl -f 136 '<YOUTUBE_VIDEO_URL>'
Cut the video by start/end timestamps
ffmpeg \
-i <VIDEO_FILE_PATH> \
-r 15 \
-ss 00:00:54 -to 00:01:05 \
<GIF_FILE_PATH>