Struggling to add a Webm as a background
Hello again! I'm back with more help needed. I'm a complete beginner in code, so please word it for me like I'm five. I'm currently trying to add a video (in webm) format as the background of my VN, but no matter how I write it out, my game says:
"could not load image 'images/bg_loopable.webm' (webm files are not supported by Ren'Py): error('Unsupported image format')
This is what the code currently looks like in my declare file (my video file's name is bg_loopable.webm), though I've gone through several iterations of this based on other advice online.
image bg_loopable = Movie(play = "images/movies/bg_loopable.webm")
show bg_loopable at truecenter
pause
And in my main script, it is supposed to be triggered by:
screen test:
add "bg_loopable"
I would also ideally like for shorter, non-looping clips to play when certain dialogue is chosen, so if anyone can give suggestions on how to trigger those as well, it would be greatly appreciated.
Thank you in advance for any help you're able to provide, I really appreciate it!