J'essaie d'utiliser ce script pour télécharger des vidéos YouTube en utilisant Python.
Actuellement, je l'utilise comme suit
youtube-dl "http://www.youtube.com/watch?v=dvsdgyuv"
Dans la documentation, il est écrit que je peux utiliser les éléments suivants
id: The sequence will be replaced by the video identifier.
url: The sequence will be replaced by the video URL.
uploader: The sequence will be replaced by the nickname of the person who uploaded the video.
upload_date: The sequence will be replaced by the upload date in YYYYMMDD format.
title: The sequence will be replaced by the literal video title.
stitle: The sequence will be replaced by a simplified video title, restricted to alphanumeric characters and dashes.
ext: The sequence will be replaced by the appropriate extension (like flv or mp4).
epoch: The sequence will be replaced by the Unix epoch when creating the file.
autonumber: The sequence will be replaced by a five-digit number that will be increased with each download, starting at zero.`enter code here`
Ils n'ont pas écrit comment je peux utiliser cela.
Comment faire pour que le nom du fichier vidéo soit identique au titre ?
Ils m'ont dit d'utiliser ceci, mais je ne sais pas comment l'utiliser en ligne de commande.
%(title)s-%(id)s.%(ext)s.