En este artículo veremos cómo podemos obtener la descripción del video de YouTube dado en pafy. Pafy es una biblioteca de Python para descargar contenido de YouTube y recuperar metadatos. El objeto Pafy es el objeto que contiene toda la información sobre el video dado. La descripción de un video de YouTube es el texto debajo de cada uno de tus videos. Ayuda a los espectadores a encontrar el contenido y decidir si verlo.
Podemos obtener el objeto pafy con la ayuda del new
método, a continuación se muestra el comando para obtener el objeto pafy para un video dado
video = pafy.new(url)
La URL del video debe existir en YouTube, ya que obtiene la información de los videos que están presentes en YouTube. YouTube es una plataforma estadounidense para compartir videos en línea.
Para hacer esto usamos description
atributo con el objeto pafy de video
Sintaxis: video.descripción
Argumento: no requiere argumento
Retorno: Devuelve string
A continuación se muestra la implementación.
# importing pafy import pafy # url of video url = "https://www.youtube.com / watch?v = vG2PNdI8axo" # getting video video = pafy.new(url) # getting description of the video value = video.description # printing the value print(value)
Producción :
Still having doubts about this course? Well, don't worry, that's how we humans are coded. But clear all your doubts by heading to the course page of the DSA Self Paced Course: https://practice.geeksforgeeks.org/co... The course is a bestseller and one of the most promising courses for Data Structures and Algorithms by GeeksforGeeks till date. Register Now: https://practice.geeksforgeeks.org/co... Please Like, Comment and Share the Video among your friends. Install our Android App: https://play.google.com/store/apps/de... If you wish, translate into the local language and help us reach millions of other geeks: http://www.youtube.com/timedtext_cs_p... Follow us on Facebook: https://www.facebook.com/GfGVideos/ And Twitter: ht=tps://twitter.com/gfgvideos Also, Subscribe if you haven't already! :)
Otro ejemplo
# importing pafy import pafy # url of video url = "https://www.youtube.com / watch?v = 3QKiK4rJIB0" # getting video video = pafy.new(url) # getting description of the video value = video.description # printing the value print("Video description : " + str(value))
Producción :
Video description : None
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA