Почитал и решил дополнить насчёт видео. Я вставляю видео с помощью такого кода в игры. Вдруг будет лучше.
Если надо видео в качестве фона как картинку то так. Вместо точек пробелы.
init:
....image titlevideo = Movie(play="video/video1.webm") любой путь до видео файла.
label start:
....scene titlevideo #видео вместо фона
...."Текст."
Если надо просто видео вставить, то я использую такой код который просто надо добавить в игру.
....$ renpy.movie_cutscene("video/video1.webm")
I read it and decided to add about the video. I embed videos with this code into games. Suddenly it will be better.
If you need a video as a background, like a picture, then so. Spaces instead of dots.
init:
....image titlevideo = Movie(play="video/video1.webm") any path to the video file.
label start:
....scene titlevideo #video instead of background
...."Text."
If you just need to insert a video, then I use a code that just needs to be added to the game.
....$ renpy.movie_cutscene("video/video1.webm")