是否可以为通过YouTube API上传的视频指定自己的缩略图?
使用最新版本的Python库,我可以在将视频条目插入YouTube之前创建和设置媒体组的缩略图 - 但是指定的缩略图不会设置在视频本身上。
我正在使用类似的代码:
from gdata import media
from gdata.youtube import YouTubeVideoEntry
from gdata.youtube.service import YouTubeService
# Create a thumbnail and pass it to my media group
thumbnail = media.Thumbnail(url='http://valid_image_url.jpg')
media_group = media.Group(thumbnail=thumbnail, title='foo', ...)
# Use the media group to create a video entry
entry = YouTubeVideoEntry(media=media_group)
# Create a service instance and use it to login
service = YouTubeService(...)
service.ClientLogin(...)
# Get video file
file = open('/path_to_video.mp4', 'rb')
# Push the video to YouTube
service.InsertVideoEntry(
entry,
file
)
# Close the file
file.close()
答案 0 :(得分:1)
否。使用标准YouTube API,您无法以编程方式为视频设置缩略图。
但是,如果您是content partner并且可以访问YouTube CMS(您的合作伙伴经理可以启用),那么您可以从那里设置视频作品。我将在完成此过程时发布详细信息。