Pafy – 获取流的文件大小
在本文中,我们将看到如何在给定 youtube 视频流的情况下获取文件大小。 Pafy 是一个Python库,用于下载 YouTube 内容和检索元数据。 Pafy 对象是包含有关给定视频的所有信息的对象。流基本上可用的视频分辨率可在 youtube 上找到。文件大小以字节为单位,通常分辨率越高,文件大小就越大。
我们可以借助new
方法获取 pafy 对象,借助allstreams
属性我们可以获取视频可用的所有流,下面是获取给定视频的 pafy 对象的命令
video = pafy.new(url)
streams = video.allstreams
视频 url 应该存在于 youtube 上,因为它会获取 youtube 上存在的那些视频的信息。 YouTube 是美国的在线视频分享平台。
为了做到这一点,我们使用get_filesize
方法和视频的流对象
Syntax : stream.get_filesize()
Argument : It takes no argument
Return : It returns integer
下面是实现
# importing pafy
import pafy
# url of video
url = "https://www.youtube.com / watch?v = vG2PNdI8axo"
# getting video
video = pafy.new(url)
# getting all the available streams
streams = video.allstreams
# selecting one stream
stream = streams[1]
# getting file size of stream
value = stream.get_filesize()
# printing the value
print("File Size in bytes: " + str(value))
输出 :
File Size in bytes: 554085
另一个例子
# importing pafy
import pafy
# url of video
url = "https://www.youtube.com / watch?v = i6rhnSoK_gc"
# getting video
video = pafy.new(url)
# getting all the available streams
streams = video.allstreams
# selecting one stream
stream = streams[4]
# getting file size of stream
value = stream.get_filesize()
# printing the value
print("File Size in bytes: " + str(value))
输出 :
File Size in bytes: 8125774