|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi
Do any of you use linux for pov animations?
if so, what do you use to stitch together the frames into
a movie?
I've found imagemagik's "convert" which can make animated gifs,
I was wondering if there was anything that will make mpegs.
--
Bill Hails
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bill Hails wrote:
> Hi
> Do any of you use linux for pov animations?
> if so, what do you use to stitch together the frames into
> a movie?
>
When I used to do animations with pov I used "mpeg_encode" to encode the ppm
pictures into a movie. "mencoder" that comes with "mplayer" can also encode
from png, tga, jpeg to various movie formats. I guess "transcode" will be
able to do the job as well (I'm not very familar with that though).
So, now you've plenty of choice :)
- Micha
--
POV-Ray Objects Collection: http://objects.povworld.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Micha Riser wrote:
> Bill Hails wrote:
>
>> Do any of you use linux for pov animations?
>> if so, what do you use to stitch together the frames into
>> a movie?
>>
>
> When I used to do animations with pov I used "mpeg_encode" to encode the
> ppm pictures into a movie. "mencoder" that comes with "mplayer" can also
> encode from png, tga, jpeg to various movie formats. I guess "transcode"
> will be able to do the job as well (I'm not very familar with that
> though).
>
> So, now you've plenty of choice :)
Let's add mpeg2enc from http://mjpeg.sourceforge.net/ to the list.
Thomas
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bill Hails wrote:
> Hi
> Do any of you use linux for pov animations?
> if so, what do you use to stitch together the frames into
> a movie?
>
> I've found imagemagik's "convert" which can make animated gifs,
> I was wondering if there was anything that will make mpegs.
>
I use ppmtompeg, a tool from the netpbm set, just set the output file
type in POV-Ray to ppm and run through ppmtompeg. The only trick is to
produce the *par file that tells ppmtompeg a bunch of parameters for
proper encoding. I play the resulting mpegs with plaympeg. For some
reason that escapes me, xine does not play the full mpeg, mplayer does
not seem to have problems, though. To make animated gifs I use ppmtogif
and then gifsicle. I usually have to reduce the number of colors
because gifs can only handle 256 colors, and my raytraced images have at
least several thousand colors.
So, in my povray.ini file I have to set up Output_Type=P, then produce
the frames and run them through ppmtompeg.
If I want animated gifs, I run my ppm files through ppmtogif and make
the animation with gifsicle.
I have a shell script that does all those operations for me, and I could
send you the parameter file for ppmtompeg, if you are interested.
Have a nice day
Victor
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Micha Riser wrote:
> Bill Hails wrote:
>
>
>>Hi
>>Do any of you use linux for pov animations?
>>if so, what do you use to stitch together the frames into
>>a movie?
>>
>
>
> When I used to do animations with pov I used "mpeg_encode" to encode the ppm
> pictures into a movie. "mencoder" that comes with "mplayer" can also encode
> from png, tga, jpeg to various movie formats. I guess "transcode" will be
> able to do the job as well (I'm not very familar with that though).
>
> So, now you've plenty of choice :)
>
> - Micha
>
Most times I used mencoder but transcode gives you more freedom to play
around (this must not be a benefit ;-) )
For transcode you can do it this way:
1.) Create a list with all images
ls -1 *.png > list.lst
(or ls -1 *.jpg > list.lst)
2.) Let transcode convert them to a video (mpeg in this case)
transcode -i list.lst -x imlist,null -g 800x600 -y mpeg,null -f 15 -w
1500 -o video.mpeg -H 0
-f sets the framerate
-w sets the bitrate
-x is the Inputmodule (Video,Audio)
-y is the Outputmodule (Video,Audio)
For multipass rendering (divx,xvid) one must use
the -R 1 or -R 2 option.
Sebastian
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
TMPGEnc works with wine :). All you need is the frames as p0001.jpg,
p0002.jpg, ... and then click on p0001.jpg as the video source. .wavs work
too for the sound. Also, TMPGenc has awesome mpegtools in
the first menu, to do basically anything you want with mpeg1 or mpeg2
(DVD).
mencoder is the easiest if you don't need sound and can use .pngs or .jpgs.
Here is an example script. Also look into mpegtools.
mencoder \*.jpg -mf on:fps=5 -ovc lavc -lavcopTs vcodec=mpeg4:vbitrate=500
-o test.avi
Bill Hails wrote:
>Hi
>Do any of you use linux for pov animations?
>if so, what do you use to stitch together the frames into
>a movie?
>
>I've found imagemagik's "convert" which can make animated gifs,
>I was wondering if there was anything that will make mpegs.
>
>--
>Bill Hails
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |