How do i speed up lets say a blowjob animation avi? Can i do it in RenPY or is it rather done in the application that creates the avi from my image series?
My animations are mostly 30fps
My animations are mostly 30fps
You absolutely can create a dynamic image like that. You can also create one by using the image statement and some ATL:Possibly a way to do it without a video:
Script aYou must be registered to see the linkswhere you have manual control over when the next image will be drawn via the return-line.
I just have doubts about a good performance with this method if the animation is full 720p/1080p or something.
image eileen animated:
"eileen_happy.png"
pause 1.0
"eileen_vhappy.png"
pause 1.0
repeat
For maximum portability, VP8/9+Vorbis+WebM works really well. ffmpeg is capable of turning an image sequence into this format without any problem, and allows you to tune the bitrate at which the video and audio are encoded so that you can trade off quality vs size.Ren'Py is capable of using libav (included) to play movies using the video codecs:
and the following audio codecs:
- VP9
- VP8
- Theora
- MPEG 4 part 2 (including Xvid and DivX)
- MPEG 2
- MPEG 1
inside the following container formats:
- OPUS
- Vorbis
- MP3
- MP2
- PCM
(Note that using some of these formats may require patent licenses. When in doubt, and especially for commercial games, we recommend using VP9, VP8, or Theora, Opus or Vorbis, and WebM, Matroska, or Ogg.)
- WebM
- Matroska
- Ogg
- Avi
- Various kinds of MPEG stream.