我使用像这样的python在Blender 2.58中加载动画纹理(参见this question earlier):
#setup world
wtex = bpy.data.textures.new(name="WorldTexture", type='IMAGE')
# set World texture
wrld = bpy.context.scene.world
if wrld:
slot = wrld.texture_slots.add()
slot.texture = wtex
slot.use_map_horizon = True
img=bpy.data.images.load(filepath='\\vtex.avi')
if img:
slot.texture.image=img
如何获取视频中的帧数(img)? Blender在从GUI加载纹理时显然会这样做,但我没有找到一种方法来从Python中创建它。
答案 0 :(得分:0)
使用img.frame_duration
;它给出了视频中的总帧数。