Hi there.
We can make our own function to get a video. What I do, is save all the frames and then use Virtualdub to finish the video. Virtualdub is free. With this function, we can adjust how mani frames we save . With Virtualdub we can then load the whole secuence , adjust speed add audio lots of image filters and save it all .
Here what I use :
set display mode 640,480,16
autocam off
sync on
make object box 1,5,5,5
make object box 2,0.2,1,6
position object 2,0,5,0
position camera -10,10,-10
point camera 0,0,0
do
gir#=wrapvalue(gir#+0.2)
g#=g#+0.1
yrotate object 1,g#
yrotate object 2,-gir#
if spacekey()=1
f=f+1
if f=2 then frame=frame+1
if f>20 then f=0
endif
if spacekey() and f=2
get image frame,0,0,320,240,1
save image "image/ima"+str$(frame)+".jpg",frame
endif
control camera using arrowkeys 0,0.1,0.1
a#=wrapvalue(a#+mousemovex()/2)
cam#=wrapvalue(cam#+mousemovey()/2)
rotate camera cam#,a#,0
if leftkey() then move camera left 0.1
if rightkey() then move camera right 0.1
sync
loop
https://www.youtube.com/watch?v=Ty9EZfl06uU
Attached the whole example.
Cheers.
I'm not a grumpy grandpa
