- Oct 14, 2021
- 626
- 2,808
I'm using Ren'py to play a .webm video. Here is my definition for that and the code I use to play it:
The "jamie_end.png" is the last image of the 200 images that I used to create the video, so it should match the end of the video exactly.
Here is the image:
Notice that there are no issues with the windows in the background. This is exactly how the image appears when it is the last frame of the video.
But now see that when the image is shown in Ren'py by itself, not as part of the video, I'm getting Ren'py's background showing through.
I've tried using a .jpg version instead, but you can see that the windows are still not consistent with the video version:
As far as I can tell, there is no way in Ren'py to make the video freeze on the last frame of a video until the player clicks through. (If someone can show me differently, that would be great.) But if I can't get the photo to match the video, then I can't use this method, either.
Any suggestions?
Code:
image jamie = Movie(channel ="movie", play="images/s1_1/jamie.webm", loop=False, image="images/s1_1/jamie_end.png")
Code:
scene 1-28a with dissolve
$ renpy.pause()
scene jamie
$ renpy.pause()
scene 1-31 with Dissolve(1)
Here is the image:
Notice that there are no issues with the windows in the background. This is exactly how the image appears when it is the last frame of the video.
But now see that when the image is shown in Ren'py by itself, not as part of the video, I'm getting Ren'py's background showing through.
I've tried using a .jpg version instead, but you can see that the windows are still not consistent with the video version:
As far as I can tell, there is no way in Ren'py to make the video freeze on the last frame of a video until the player clicks through. (If someone can show me differently, that would be great.) But if I can't get the photo to match the video, then I can't use this method, either.
Any suggestions?