POV-Ray : Newsgroups : povray.animations : IKEA test : Re: IKEA test Server Time
29 Apr 2024 01:19:40 EDT (-0400)
  Re: IKEA test  
From: greytery
Date: 11 Apr 2018 17:10:00
Message: <web.5ace78d0bfc0a90c832e26920@news.povray.org>
> However, what I also want to do is put in a few still images between the scenes.
> But I guess I can just let POV-Ray render them too..
>
I think you are talking about a filler between the animation scene files. One
way to do this is to use ffmpeg to loop a still image for a certain number of
frames (e.g. 1 sec = 25).
e.g. for a couple of 3 second fillers, using the last frame of each scene..
$ ffmpeg  -loop 1 -i stillimg1.png -r 25  -frames 75 scene1a.mp4
$ ffmpeg  -loop 1 -i stillimg2.png -r 25  -frames 75 scene2a.mp4

then
$ cat filelist.txt
scene1.mp4
scene1a.mp4
scene2.mp4
scene2a.mp4
scene3.mp4


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.