So I'm having some problems inserting movies into my renpy game. Here's what I've tried and the problems I'm having with each. The clip is 5 seconds long at 30fps encoded with VP9.
That code works but at the end it flashes the previous image v1t7 for about half a second then shows v1t8.
I also tried:
That code plays the first second of the clip then skips right to the end without playing the rest.
As well as:
That works but is not skippable and it won't freeze on the final frame so I have to save the final frame and put it in the script (scene v1t8 in this case) which isn't a big deal but I'd like them to be skippable if possible.
I'm also wondering how to insert a clip that loops until the player clicks to move on.
Code:
scene v1t7
"Characters talking"
$ renpy.movie_cutscene("images/v1/flashback/v1tpan.mkv", delay=None)
scene v1t8
I also tried:
Code:
image v1tpan = Movie(play="images/v1/flashback/v1tpan.mkv")
show v1tpan with fade
As well as:
Code:
play movie "images/v1/flashback/v1tpan.mkv"
I'm also wondering how to insert a clip that loops until the player clicks to move on.