Pafy – 获取视频的持续时间
在本文中,我们将看到如何在 pafy 中获取给定 youtube 视频的持续时间。 Pafy 是一个Python库,用于下载 YouTube 内容和检索元数据。 Pafy 对象是包含有关给定视频的所有信息的对象。视频的持续时间是视频的时间段,以 (HH:MM:SS) 格式表示。
我们可以借助new
方法获取 pafy 对象,下面是获取给定视频的 pafy 对象的命令
video = pafy.new(url)
视频 url 应该存在于 youtube 上,因为它会获取 youtube 上存在的那些视频的信息。 YouTube 是美国的在线视频分享平台。
为了做到这一点,我们将duration
属性与视频的 pafy 对象一起使用
Syntax : video.duration
Argument : It takes no argument
Return : It returns string
下面是实现
# importing pafy
import pafy
# url of video
url = "https://www.youtube.com / watch?v = vG2PNdI8axo"
# getting video
video = pafy.new(url)
# getting duration of the video
value = video.duration
# printing the value
print("Duration : " + value)
输出 :
Duration : 00:01:06
另一个例子
# importing pafy
import pafy
# url of video
url = "https://www.youtube.com / watch?v = i6rhnSoK_gc"
# getting video
video = pafy.new(url)
# getting duration of the video
value = video.duration
# printing the value
print("Duration : " + value)
输出 :
Duration : 00:11:42