Youtube下载工具:yt-dlp

Youtube download tool:yt-dlp

Tool
R
Python
Author

Tony Duan

Published

March 11, 2025

yt-dlp is a feature-rich command-line audio/video downloader with support for thousands of sites. The project is a fork of youtube-dl based on the now inactive youtube-dlc.

https://github.com/yt-dlp/yt-dlp

Download yt-dlp

Code
!pip install -U "yt-dlp[default]"

update yt-dlp

Code
!pip install yt-dlp --upgrade

check version

Code
!yt-dlp --version

Start download youtube

download video

Code
!yt-dlp --cookies-from-browser chrome 'https://www.youtube.com/watch?v=ULRVwRmfCmM'

download video to mp3 format

Code
!yt-dlp --cookies-from-browser chrome -x --audio-format mp3 --audio-quality 0 'https://www.youtube.com/watch?v=FkOpwodhROI'

download video with timestamp

Code
!yt-dlp --cookies-from-browser chrome --download-sections '*00:02-03:00' 'https://www.youtube.com/watch?v=FkOpwodhROI'

download video to mp4 with timestamp

Code
!yt-dlp -f mp4 --cookies-from-browser chrome  --download-sections '*00:02-03:00'  'https://www.youtube.com/watch?v=FkOpwodhROI'

=