Difference between revisions of "Render options"

From Synfig Studio :: Documentation
Jump to: navigation, search
m (WIP/tidying)
(Added table of supported file formats)
Line 5: Line 5:
 
*gif - graphic interchange format
 
*gif - graphic interchange format
 
*imagemagick - image manipulation program
 
*imagemagick - image manipulation program
*jpeg - joint photgraphic Expert Group - dtill format suited to Photographs
+
*jpeg - Joint Photographic Expert Group - still format suited to photographs
 
*null - Dummy file for rendering engine testing?
 
*null - Dummy file for rendering engine testing?
 
*null-tile - Dummy file for rendering engine testing?
 
*null-tile - Dummy file for rendering engine testing?
Line 13: Line 13:
 
*yuv420p - Still image format designed to preserve the images luminance
 
*yuv420p - Still image format designed to preserve the images luminance
  
 +
{| border="1"
 +
|-
 +
! Target type
 +
! Extension
 +
! Helper app
 +
! Linux support
 +
! Windows support
 +
|-
 +
! Auto
 +
! (.bmp -> bmp) (.dv -> dv_trgt) (.mpg -> ffmpeg_trgt) (.gif -> gif) (.miff -> imagemagick_trgt) (.jpg -> jpeg_trgt) (.avi -> Target_LibAVCodec) (.mng -> mng_trgt) (.exr -> exr_trgt) (.png -> png_trgt) (.ppm -> ppm) (.yuv -> yuv)
 +
! Determined by extension
 +
! png -> png OK, , gif -> bmp (bad), exr ->bmp, dv -> bmp and bad rendered, gif -> bmp (the bmp is ok), yuv ->bmp
 +
!need to fill in
 +
|-
 +
! bmp
 +
! bmp
 +
! Native
 +
! Yes
 +
! Yes
 +
|-
 +
! dv
 +
! dv
 +
! encodedv
 +
!
 +
! untested
 +
|-
 +
! ffmpeg
 +
! mpg
 +
! ffmpeg
 +
!
 +
! Error - could not find codec parameters (video: ppm, gray)
 +
|-
 +
! gif
 +
! gif
 +
! native
 +
!
 +
! yes
 +
|-
 +
! imagemagick
 +
! miff
 +
! imagemagick
 +
!
 +
! Renders to a readable file, but the image is corrupted
 +
|-
 +
! jpeg
 +
! jpg
 +
! native
 +
!
 +
! yes
 +
|-
 +
! null
 +
! n/a
 +
! n/a
 +
! n/a
 +
! n/a
 +
|-
 +
! null-tile
 +
! n/a
 +
! n/a
 +
! n/a
 +
! n/a
 +
|-
 +
! open-exr
 +
! exr
 +
! native
 +
!
 +
! yes
 +
|-
 +
! png
 +
! png
 +
! native
 +
!
 +
! yes
 +
|-
 +
! ppm
 +
! ppm
 +
! native
 +
!
 +
! yes
 +
|-
 +
! yuv420
 +
! yuv
 +
! native
 +
!
 +
! yes
 +
|}
  
Still frame formats you can render to:- bmp, gif, jpeg, open-exr, png, ppm, yuv420p (output untested (haven't found anything that will read this format))
 
  
 
=== Rendering to Video ===
 
=== Rendering to Video ===

Revision as of 03:34, 15 October 2007

Languages Language: 

English


Work in progress - needs cleaning up and completing...

Here are the file types that can be rendered

  • gif - graphic interchange format
  • imagemagick - image manipulation program
  • jpeg - Joint Photographic Expert Group - still format suited to photographs
  • null - Dummy file for rendering engine testing?
  • null-tile - Dummy file for rendering engine testing?
  • open-exr - Still image designed for handling Motion picture frames developed by ILM
  • png - portable Network graphics - still images with lossless compression
  • ppm - portable pixmap - still image using very basic format - synfig appears to render this target as a png
  • yuv420p - Still image format designed to preserve the images luminance
Target type Extension Helper app Linux support Windows support
Auto (.bmp -> bmp) (.dv -> dv_trgt) (.mpg -> ffmpeg_trgt) (.gif -> gif) (.miff -> imagemagick_trgt) (.jpg -> jpeg_trgt) (.avi -> Target_LibAVCodec) (.mng -> mng_trgt) (.exr -> exr_trgt) (.png -> png_trgt) (.ppm -> ppm) (.yuv -> yuv) Determined by extension png -> png OK, , gif -> bmp (bad), exr ->bmp, dv -> bmp and bad rendered, gif -> bmp (the bmp is ok), yuv ->bmp need to fill in
bmp bmp Native Yes Yes
dv dv encodedv untested
ffmpeg mpg ffmpeg Error - could not find codec parameters (video: ppm, gray)
gif gif native yes
imagemagick miff imagemagick Renders to a readable file, but the image is corrupted
jpeg jpg native yes
null n/a n/a n/a n/a
null-tile n/a n/a n/a n/a
open-exr exr native yes
png png native yes
ppm ppm native yes
yuv420 yuv native yes


Rendering to Video

Rendering to video directly from Synfig under Windows presents some challenges.

Whilst you can render to any size image, if you're going to show your video on Youtube, you may want to take that into account when you render. You want to save a series of images that represent your animation, to a still format that ffmpeg can read. I recommend png. If you set up your render like [render.png]

Image size - width 320 Xres 72.0 Phys width 4.44 Height 240 Yres 72.0 Phys Height 3.33 (Image span 11.0127

Image area Top left X: -3.67 Y:4.2 Bottom right X: 3.67 y:-4.2)

You will get a series of png files in your output directory. Open a command prompt, cd to that directory, then use ffmpeg to assemble these png files into the video stream of your choice. for example -

C:\output>ffmpeg -r 15 -i rfrac%04d.png -f flv fractal.flv

creates a Flash video file of with the same framerate as used on Youtube. You should be able to submit it to Youtube without the need for the Youtube servers to have to re-compress it.


Languages Language: 

English