Pafy – 生成流的文件名
在本文中,我们将看到如何在 pafy 中生成给定 youtube 视频流的文件名。 Pafy 是一个Python库,用于下载 YouTube 内容和检索元数据。 Pafy 对象是包含有关给定视频的所有信息的对象。流基本上可用的视频分辨率可在 youtube 上找到。文件名是流文件的标题。
我们可以借助 new 方法获取 pafy 对象,借助 allstreams 属性我们可以获取视频可用的所有流,下面是获取给定视频的 pafy 对象的命令
video = pafy.new(url)
streams = video.allstreams
视频 url 应该存在于 youtube 上,因为它会获取 youtube 上存在的那些视频的信息。 YouTube 是美国的在线视频分享平台。
为了做到这一点,我们将 generate_filename 方法与视频的流对象一起使用
Syntax : stream.generate_filename()
Argument : It takes no argument
Return : It returns string
下面是实现
Python3
# 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]
# generating file name
value = stream.generate_filename()
# printing the value
print("Generated File Name : " + str(value))
Python3
# 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]
# generating file name
value = stream.generate_filename()
# printing the value
print("Generated File Name : " + str(value))
输出 :
Generated File Name : DSA Self Paced Course _ GeeksforGeeks.webm
另一个例子
Python3
# 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]
# generating file name
value = stream.generate_filename()
# printing the value
print("Generated File Name : " + str(value))
输出 :
Generated File Name : COVID CASE IN OUR BUILDING - VLOG 32.webm