youtube-dl
https://github.com/ytdl-org/youtube-dl
Here's is the list of all the supported sites, ordered alphabetically: http://ytdl-org.github.io/youtube-dl/supportedsites.html
安裝(MacOS)
brew install youtube-dl
萬能的轉檔軟體, 這裡拿來合併video和audio
FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge.
brew install ffmpeg
使用 youtube-dl
一般下載
youtube-dl {{url}}
使用-F 查看特定解析度或是特定格式的影片, audio等
youtube-dl -F {{url}}

使用-f 合併video和audio
youtube-dl -f "hls-akfire_interconnect_quic-244+dash-fastly_skyfire_sep-audio-413f9d96" {{url}}
下載 MP4 格式中最高畫質,或是其他格式中的最高畫質
youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' {{url}}
指定最佳畫質,但不要高於 480p
youtube-dl -f 'bestvideo[height<=480]+bestaudio/best[height<=480]' {{url}}
下載檔案大小小於 50M 的最高畫質影片
youtube-dl -f 'best[filesize<50M]' {{url}}