====== Bagaimana Cara Download Youtube di Linux dengan Youtube-dl ======
Apabila anda ingin download video youtube melalui command line linux maka anda bisa menginstall youtube-dl
**Kami menggunakan sistem operasi centos 7
===== Install Epel Release =====
yum install epel-release -y
===== Install Youtube-dl =====
yum install youtube-dl -y
===== Youtube-dl Melihat format video =====
Melihat format apa saja yang bisa di download
[root@localhost ~]# youtube-dl --list-format https://www.youtube.com/embed/B3zrTHRG6dQ
[youtube] B3zrTHRG6dQ: Downloading webpage
[info] Available formats for B3zrTHRG6dQ:
format code extension resolution note
249 webm audio only tiny 53k , opus @ 50k (48000Hz), 1.50MiB
250 webm audio only tiny 69k , opus @ 70k (48000Hz), 1.74MiB
140 m4a audio only tiny 130k , m4a_dash container, mp4a.40.2@128k (44100Hz), 3.91MiB
251 webm audio only tiny 133k , opus @160k (48000Hz), 3.20MiB
278 webm 256x144 144p 90k , webm container, vp9, 25fps, video only, 2.43MiB
160 mp4 256x144 144p 113k , avc1.4d400c, 25fps, video only, 2.22MiB
242 webm 426x240 240p 177k , vp9, 25fps, video only, 3.69MiB
133 mp4 426x240 240p 259k , avc1.4d4015, 25fps, video only, 5.00MiB
243 webm 640x360 360p 309k , vp9, 25fps, video only, 6.39MiB
134 mp4 640x360 360p 472k , avc1.4d401e, 25fps, video only, 9.05MiB
244 webm 854x480 480p 478k , vp9, 25fps, video only, 9.85MiB
247 webm 1280x720 720p 816k , vp9, 25fps, video only, 17.45MiB
135 mp4 854x480 480p 834k , avc1.4d401e, 25fps, video only, 16.00MiB
248 webm 1920x1080 1080p 1234k , vp9, 25fps, video only, 25.47MiB
136 mp4 1280x720 720p 1567k , avc1.4d401f, 25fps, video only, 28.88MiB
137 mp4 1920x1080 1080p 2384k , avc1.640028, 25fps, video only, 53.09MiB
18 mp4 640x360 360p 421k , avc1.42001E, 25fps, mp4a.40.2@ 96k (44100Hz), 12.73MiB
22 mp4 1280x720 720p 1083k , avc1.64001F, 25fps, mp4a.40.2@192k (44100Hz) (best)
Untuk mendownload pada format tertentu, kita cukup masukkan nomor kode formatnya.
Contoh kita akan mendownload format audio saja dengan kode 249 seperti ini :
[root@localhost ~]# youtube-dl -f 249 https://www.youtube.com/embed/B3zrTHRG6dQ
[youtube] B3zrTHRG6dQ: Downloading webpage
[download] Destination: Kisah Hijrah Sahabat Ayyasy bin Abi Rabi'ah - Ustadz Firanda Andirja-B3zrTHRG6dQ.webm
[download] 100% of 1.50MiB in 00:02
===== Download Rate =====
Kita mungkin tidak ingin memperlambat akses internet jaringan anda, maka itu kita batasi kecepatannya dengan 150K
[root@localhost ~]# youtube-dl -f 249 -r 150K https://www.youtube.com/embed/B3zrTHRG6dQ [youtube] B3zrTHRG6dQ: Downloading webpage
[download] Destination: Kisah Hijrah Sahabat Ayyasy bin Abi Rabi'ah - Ustadz Firanda Andirja-B3zrTHRG6dQ.webm
[download] 100% of 1.50MiB in 00:10
Kita bisa lihat, jika sebelumnya butuh waktu 00:02 detik untuk download dengan dibatasi kecepatan 150K membutuhkan waktu 00:10
===== Download Audio Format Mp3 =====
Kita perlu menginstall ffmpg apabila ingin menghasilkan format mp3
yum install ffmpeg ffmpeg-devel -y
Selanjutnya kita bisa download youtube dengan format mp3 menggunakan command
youtube-dl -x --audio-format mp3 https://www.youtube.com/embed/B3zrTHRG6dQ
Demikian tutorial download youtube dari linux command dan semoga bermanfaat.