Maison > Article > Tutoriel logiciel > comment utiliser yt-dlp pour télécharger une playlist
yt-dlp, a command-line tool, enables efficient video and playlist downloads from various platforms, particularly YouTube. This article provides comprehensive instructions on installing and using yt-dlp to download playlists. It covers essential comma
How to Use yt-dlp to Download a Playlist
What is yt-dlp?
yt-dlp is a powerful command-line tool that allows you to download videos and playlists from various video-sharing platforms, including YouTube. It is a fork of the popular YouTube-dl utility, offering additional features, bug fixes, and improved performance.
How to Install yt-dlp?
Open your terminal and run the following command:
<code>pip install yt-dlp</code>
Verify the installation by running:
<code>yt-dlp --version</code>
How to Download a Playlist Using yt-dlp?
To download a playlist using yt-dlp, follow these steps:
Run the following command, replacing [playlist-url]
with the URL of the playlist you wish to download:
<code>yt-dlp -x --audio-format mp3 --output "~/Music/%(playlist)s/%(title)s.%(ext)s" [playlist-url]</code>
-x
option downloads only the audio streams of the videos in the playlist.--audio-format mp3
option specifies the desired output audio format.--output
option sets the output directory and filename template. You can customize the filename template to include metadata such as the playlist name and video title.Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!