I'm trying to add some animations to my project, and can't get them to work... The method I've used, thus far, is creating string of jpg files with Daz Studio, then using ffmpeg to convert into a video file. I've tried as both an mp4 and as webm, as well as with and without adding a silent audio track...
The videos themselves work just fine using a video player... but when I try to put them up in the game I get nothing...
if using
$ renpy.movie_cutscene "/video/bikinitoss.webm" It just jumps straight to the next line of code (no errors or anything, just as if nothing is there)...
if I instead define it...
image bikinitoss = Movie(size=(1920,1080), channel="movie_dp", play="/video/bikinitoss.webm") ###Note: i've used just "movie" also as the channel....somewhere I read that _dp makes it displayable so that you can put text over it,so that is how it's in at this moment...
and then...
scene bikinitoss (or show bikinitoss)
The mouse cursor disappears as if the movie is playing for the time that it would be going (5 seconds)....unless of course I click, which jumps ahead... but it doesn't actually show anything...
As another test, I pulled a file from a few other games I've played (both webm and mp4 formats were tried) and though I see the movies fine when playing someone else's game, when I try to use in mine, nothing shows up...
I even started a blank test project that only consists of...
And it didn't work there either (using either my video or one pulled out of another game).
Anyone have any ideas or suggestions I might try?
The videos themselves work just fine using a video player... but when I try to put them up in the game I get nothing...
if using
$ renpy.movie_cutscene "/video/bikinitoss.webm" It just jumps straight to the next line of code (no errors or anything, just as if nothing is there)...
if I instead define it...
image bikinitoss = Movie(size=(1920,1080), channel="movie_dp", play="/video/bikinitoss.webm") ###Note: i've used just "movie" also as the channel....somewhere I read that _dp makes it displayable so that you can put text over it,so that is how it's in at this moment...
and then...
scene bikinitoss (or show bikinitoss)
The mouse cursor disappears as if the movie is playing for the time that it would be going (5 seconds)....unless of course I click, which jumps ahead... but it doesn't actually show anything...
As another test, I pulled a file from a few other games I've played (both webm and mp4 formats were tried) and though I see the movies fine when playing someone else's game, when I try to use in mine, nothing shows up...
I even started a blank test project that only consists of...
Code:
image bikinitoss=Movie(size=(1920, 1080), channel="movie",play="/video/bikinitoss.mp4")
label start:
"vid test"
$ renpy.movie_cutscene("/video/bikinitoss.mp4")
"did it work?"
"how about now?"
scene bikinitoss
"well?"
return
Anyone have any ideas or suggestions I might try?