I have a video playing with VideoFFmpeg, and I’d like the texture to be the first frame of the video before it starts, and remain on the last frame when it ends after loading a new scene in which the video persists. I’m able to accomplish the former by setting the texture that VideoFFmpeg() replaces to the same video file that it plays, setting the “offset” in the “Image” panel of the texture’s properties (which seems to control which frame of the video is statically displayed) to 0.
So later, when I want to change this to the last frame, how do I access it from Python? The tooltip says that the offset is “ImageUser.frame_offset” and I’d also need to access ImageUser.frame_duration to find out what the last frame is so I can set frame_offset to it, but I don’t see any documentation on how to access the ImageUser properties when you have a material ID. (I’ve also checked dir() of the return value of bge.texture.Texture() and don’t see ImageUser in there.)
Thanks.