<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.synfig.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ulrik</id>
		<title>Synfig Studio :: Documentation - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.synfig.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ulrik"/>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/Special:Contributions/Ulrik"/>
		<updated>2026-05-05T15:01:23Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.3</generator>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Dev:Building_On_Mac_OS_X&amp;diff=4447</id>
		<title>Dev:Building On Mac OS X</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Dev:Building_On_Mac_OS_X&amp;diff=4447"/>
				<updated>2007-11-04T00:25:38Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: /* problem building &amp;quot;doxygen&amp;quot; via jhbuild */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There is currently no up-to-date build of Synfig for Mac OS X.&lt;br /&gt;
&lt;br /&gt;
== Build environment ==&lt;br /&gt;
&lt;br /&gt;
Since these instructions assume one is using MacPorts, make sure the following environment variables are set accordingly:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
export PATH=&amp;quot;/opt/local/bin:$PATH&amp;quot;&lt;br /&gt;
export ACLOCAL_FLAGS=&amp;quot;-I /opt/local/share/aclocal&amp;quot;&lt;br /&gt;
export PKG_CONFIG_PATH=&amp;quot;/opt/local/lib/pkgconfig&amp;quot;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There seem to be two ways of building GTK applications for OS X:&lt;br /&gt;
&lt;br /&gt;
== Using the native GTK port ==&lt;br /&gt;
&lt;br /&gt;
In order to build Synfig natively on Mac OS X using the native GTK port (as opposed to using X11), you will require the following:&lt;br /&gt;
&lt;br /&gt;
* Mac OS X developer tools (i.e. [http://developer.apple.com/tools/xcode/ XCode])&lt;br /&gt;
* git (&amp;quot;git-core&amp;quot; port on macports)&lt;br /&gt;
* subversion (&amp;quot;subversion&amp;quot; port on macports)&lt;br /&gt;
* jhbuild&lt;br /&gt;
* libxml++&lt;br /&gt;
* [http://developer.imendio.com/projects/gtk-macosx Imendio's GTK port]'s &amp;quot;.jhbuildrc&amp;quot; file&lt;br /&gt;
* Subversion checkout of &amp;quot;etl&amp;quot;, &amp;quot;synfig-core&amp;quot;, and &amp;quot;synfig-studio&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Boot strapping ===&lt;br /&gt;
&lt;br /&gt;
First of all make sure you have a Terminal window open. This will be used in order to perform all the steps necessary to compile synfig.&lt;br /&gt;
&lt;br /&gt;
You might also want to compile as a different user, as one tool used, &amp;quot;jhbuild&amp;quot;, requires files to be placed in the current user's home directory. This can be done by typing the following into the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
su &amp;lt;other username&amp;gt;&lt;br /&gt;
&amp;lt;type in other username's password&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I shall assume you only have XCode and MacPorts installed. In order to get subversion and git, you should be able to type the following into the terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo port install git-core&lt;br /&gt;
sudo port install subversion&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Assuming MacPorts installed subversion and git correctly, you'll now need to grab and compile a copy of jhbuild from the gnome repository, which can be done like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
svn co http://svn.gnome.org/svn/jhbuild/trunk jhbuild&lt;br /&gt;
cd jhbuild &amp;amp;&amp;amp; make -f Makefile.plain install&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will also need the .jhbuildrc file from Imendio. It is also a good idea to ensure your PATH contains your &amp;quot;~/bin&amp;quot; directory and &amp;quot;/opt/gtk/bin&amp;quot;, the latter being important when you start to build everything else. Finally, make sure that &amp;quot;/opt/gtk/&amp;quot; exists and is owned by your build user:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
curl http://developer.imendio.com/svn/gtk-osx-build/jhbuildrc-gtk-osx &amp;gt; ~/.jhbuildrc&lt;br /&gt;
export PATH=&amp;quot;/opt/gtk/bin:~/bin:$PATH&amp;quot;&lt;br /&gt;
sudo mkdir -p /opt/gtk &amp;amp;&amp;amp; sudo chown &amp;lt;username&amp;gt;:&amp;lt;username&amp;gt; /opt/gtk&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you can type in the following to build the bootstrap environment:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
jhbuild bootstrap&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Compiling GTK and other dependencies ===&lt;br /&gt;
&lt;br /&gt;
Assuming jhbuild has finished building all of the bootstrap lib's and such, you will not have to tell it to build &amp;quot;gtkmm&amp;quot;, which is the C++ interface to GTK.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
jhbuild build gtkmm&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will also build GTK and all of its dependencies. However it falls short of providing another dependency which Synfig requires, which is libxml++. This can be grabbed and built as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
curl -L http://ftp.gnome.org/pub/GNOME/sources/libxml++/2.19/libxml++-2.19.2.tar.gz &amp;gt; libxml++-2.19.2.tar.gz&lt;br /&gt;
tar -xzf libxml++-2.19.2.tar.gz&lt;br /&gt;
cd libxml++-2.19.2 &amp;amp;&amp;amp; ./configure --prefix=/opt/gtk &amp;amp;&amp;amp; make &amp;amp;&amp;amp; sudo make install&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Optionally you might also want to grab and build [http://www.openexr.com/ OpenEXR]. This should of course be a simple configure, make, make install job like libxml++. &lt;br /&gt;
&lt;br /&gt;
=== Synfig itself ===&lt;br /&gt;
&lt;br /&gt;
You should now be able to follow the [[Build instructions]] to compile ETL, synfig-core, and synfig-studio. The only thing different you should do is add &amp;quot;--prefix=/opt/gtk --exec-prefix=/opt/gtk&amp;quot; to the &amp;quot;./configure&amp;quot; options when building each package.&lt;br /&gt;
&lt;br /&gt;
Assuming you manage to build it correctly, you should now be able to type the following in order for Synfig to pop up on your desktop:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
synfigstudio&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note though that this isn't the end of the story: we still need to package everything up into an .app so that the more sane of us can run Synfig without having to resort to opening a terminal.&lt;br /&gt;
&lt;br /&gt;
'''TODO''': Describe how to properly package everything into an .app.&lt;br /&gt;
&lt;br /&gt;
=== Issues === &lt;br /&gt;
&lt;br /&gt;
There are currently numerous issues with Synfig with Imendio's GTK port. Watch out for:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strike&amp;gt;Window focus can sometimes be lost. If this happens, just select a window from another Mac OS X app and then select the Synfig window again.&amp;lt;/strike&amp;gt;&lt;br /&gt;
* &amp;lt;strike&amp;gt;Menus do not function correctly.&amp;lt;/strike&amp;gt;&lt;br /&gt;
* &amp;lt;strike&amp;gt;The file browser doesn't work, so you have to load files from startup.&amp;lt;/strike&amp;gt;&lt;br /&gt;
* Sometimes mouse focus on windows is lost. To solve this, try moving the affected window. Failing that, you should still be able to use the keyboard to navigate.&lt;br /&gt;
* No input devices are enumerated by GTK.&lt;br /&gt;
* XCode project files exist, but they are currently broken. Thus we just use the terminal to compile everything.&lt;br /&gt;
* Because we made the prefix &amp;quot;/opt/gtk&amp;quot;, synfig will go looking for interface images there, which obviously won't quite work right if we want to package everything into an .app.&lt;br /&gt;
&lt;br /&gt;
[[Image:Picture1kd1.jpg|Obligatory screen shot]]&lt;br /&gt;
&lt;br /&gt;
== Using X11 ==&lt;br /&gt;
&lt;br /&gt;
In order to compile synfig for X11, you will need to install gtkmm and libxml++ via MacPorts (or Fink). This can be done as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo port install gtkmm libxmlxx2&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will also install all the other dependencies (such as X11), so it make take some time to compile.&lt;br /&gt;
&lt;br /&gt;
You need to set PKG_CONFIG_PATH so that the ETL and synfig-core header files and libraries can be found:&lt;br /&gt;
&lt;br /&gt;
 export PKG_CONFIG_PATH=/opt/local/lib/pkgconfig&lt;br /&gt;
&lt;br /&gt;
For some unknown reason compiling ETL, synfig-core and synfig-studio doesn't work properly when using MacPorts auto* tools. However, it does work with the bootstrap toolset used to compile Imendio's native GTK port.  So it is suggested that you follow the [[Building_On_Mac_OS_X#Boot_strapping|Boot strapping]] section up to and including the 'jhbuild bootstrap' line and make sure &amp;quot;/opt/gtk/bin&amp;quot; is first in your $PATH in order to properly compile etl,  synfig-core and synfig-studio.&lt;br /&gt;
&lt;br /&gt;
You should now be able to follow the [[Build instructions]] to compile ETL, synfig-core, and synfig-studio. The only thing different you should do is add &amp;quot;--prefix=/opt/local --exec-prefix=/opt/local&amp;quot; to the &amp;quot;./configure&amp;quot; options when building each package.&lt;br /&gt;
&lt;br /&gt;
Assuming you manage to build it correctly, you should now be able to type the following in order for Synfig to pop up on your desktop:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
synfigstudio&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note though that this isn't the end of the story: we still need to package everything up into an .app so that the more sane of us can run Synfig without having to resort to opening a terminal.&lt;br /&gt;
&lt;br /&gt;
'''TODO''': Describe how to properly package everything into an .app.&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=== no &amp;quot;awk&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
If you get an error during building MacPorts ports complaining that a program called &amp;quot;awk&amp;quot; cannot be found, then you should install the 'gawk' port like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
sudo port install gawk&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;no command found&amp;quot; when running jhbuild ===&lt;br /&gt;
&lt;br /&gt;
When using jhbuild, you might get an error back like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
$ jhbuild glibmm&lt;br /&gt;
jhbuild glibmm: no command found&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is because you need to specify the &amp;quot;build&amp;quot; command when building a package, like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
jhbuild build glibmm&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== problem building &amp;quot;doxygen&amp;quot; via jhbuild ===&lt;br /&gt;
&lt;br /&gt;
When building doxygen, you may get an error during the build process mentioning &amp;quot;lipo&amp;quot; failed to find a file. To fix this, you should go into the shell (option 4) when prompted, and enter the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
./configure --prefix /opt/gtk --platform macosx-c++ --install /usr/bin/install&lt;br /&gt;
make &amp;amp;&amp;amp; exit&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then when prompted again, choose &amp;quot;ignore error and continue to build&amp;quot; (option 2).&lt;br /&gt;
&lt;br /&gt;
=== other problems building via jhbuild ===&lt;br /&gt;
&lt;br /&gt;
Solving other issues with building packages in jhbuild is beyond the scope of this document as all of the packages are still under development by their respective authors.&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4419</id>
		<title>DemoReel</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4419"/>
				<updated>2007-10-30T09:29:46Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: /* Other thoughts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Goal ===&lt;br /&gt;
Produce a demo reel for display on Youtube, revver, etc to showcase the capabilities of Synfig, and generate interest in the community of artists and coders to use and improve Synfig.  Ideally the whole video could be produced in Synfig (excluding audio).  &lt;br /&gt;
&lt;br /&gt;
=== Proposed screenplay ===&lt;br /&gt;
Unless otherwise stated the source is from the Synfig examples.  There seems to be a recurring theme of 'eyes' here, so the tentative working title is 'The Eye's have it'.  &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Open with &lt;br /&gt;
* handwritten 'synfig' by dooglus ([http://uk.youtube.com/watch?v=djk4B_GiN-Q&amp;amp;NR=1 YouTube] | [[Media:Handwriting.sifz|sifz]])&lt;br /&gt;
&lt;br /&gt;
then an animated figure synched to some speech - &amp;quot;Welcome to the Synfig Demo Reel&amp;quot; (I have something in the works for this one)&lt;br /&gt;
&lt;br /&gt;
Either - Cover the basics - shapes, lines, filters, distortions, transforms, etc, or just launch straight into a slide show of still images&lt;br /&gt;
&lt;br /&gt;
==== Stills ====&lt;br /&gt;
&lt;br /&gt;
* Gradients.sif&lt;br /&gt;
* wallpaper/backdrop.sif&lt;br /&gt;
Some combination of zooming in and out on the eyes of the following to demonstrate that Synfig is vector based and looks good at any resolution:-&lt;br /&gt;
* Rore's Cat&lt;br /&gt;
* Tux&lt;br /&gt;
* prologuekid.sif&lt;br /&gt;
* pirate.sif&lt;br /&gt;
* Macwolfen.sif&lt;br /&gt;
* New Julia/newjulia2.sif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Transition to -&lt;br /&gt;
&lt;br /&gt;
==== Animations ====&lt;br /&gt;
* mandelbrot.sif&lt;br /&gt;
* cells.sif&lt;br /&gt;
* noise.sif&lt;br /&gt;
* z_depth test.sif&lt;br /&gt;
* warpcube.sif&lt;br /&gt;
* Preamble taffy.sif&lt;br /&gt;
* Rotating gears by dooglus http://uk.youtube.com/watch?v=ljmQARJccYk&lt;br /&gt;
* underwater by Ulrik http://uk.youtube.com/watch?v=j7fO-1V_IFA&lt;br /&gt;
* plant growing by Ulrik http://uk.youtube.com/watch?v=UqeUOrAoziE&lt;br /&gt;
* room by Ulrik http://uk.youtube.com/watch?v=UWxj9NenDTE&lt;br /&gt;
* eye.sif http://uk.youtube.com/watch?v=nAYdf-CJwPo&lt;br /&gt;
* Eyes (by Madsen - he already gave us permission to use it in a demo reel)&lt;br /&gt;
* Synfig trailer by StephanMorin http://uk.youtube.com/watch?v=7q2jN3qcOcM&lt;br /&gt;
* Sy'n'fig by Zelig&lt;br /&gt;
* boot.sif by pxegeek - Call to action help stamp out bugs in Synfig&lt;br /&gt;
&lt;br /&gt;
* Credits&lt;br /&gt;
* links to Prologue, Werewolf&lt;br /&gt;
&lt;br /&gt;
==== Other thoughts ====&lt;br /&gt;
Need clearance from the copyright holders for the use of these works.  Please comment if it's OK or if you don't want your work used.&lt;br /&gt;
: It's OK to use any of my animations -- [[User:Dooglus|dooglus]] 04:12, 30 October 2007 (EDT)&lt;br /&gt;
: It's ok to use any of my animations and music at my site http://www.musikboden.se/mymusic/mymusic.html [[User:Ulrik|ulrik]] 05:29, 30 October 2007 (EDT)&lt;br /&gt;
Music?   If some of the more musical amongst us are willing to share their music - &lt;br /&gt;
* Madsen has some funky music that I can't begin to describe, and some nice electronic stuff also (e.g. http://laxness101.lillesvin.net/strg/lax-Lay.mp3).  &lt;br /&gt;
* Ulrik has some accordian music that may not be to everyone's taste ;) and some great piano music at http://www.musikboden.se/mymusic/solopiano/solopiano.html  (yes, I'm biased - I only try to play piano).   &lt;br /&gt;
* If we want to go up tempo, Ceox has some nice synth music that I think would work well. (Oxysphere?)&lt;br /&gt;
&lt;br /&gt;
What did I miss?&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4418</id>
		<title>DemoReel</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4418"/>
				<updated>2007-10-30T09:28:44Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: /* Other thoughts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Goal ===&lt;br /&gt;
Produce a demo reel for display on Youtube, revver, etc to showcase the capabilities of Synfig, and generate interest in the community of artists and coders to use and improve Synfig.  Ideally the whole video could be produced in Synfig (excluding audio).  &lt;br /&gt;
&lt;br /&gt;
=== Proposed screenplay ===&lt;br /&gt;
Unless otherwise stated the source is from the Synfig examples.  There seems to be a recurring theme of 'eyes' here, so the tentative working title is 'The Eye's have it'.  &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Open with &lt;br /&gt;
* handwritten 'synfig' by dooglus ([http://uk.youtube.com/watch?v=djk4B_GiN-Q&amp;amp;NR=1 YouTube] | [[Media:Handwriting.sifz|sifz]])&lt;br /&gt;
&lt;br /&gt;
then an animated figure synched to some speech - &amp;quot;Welcome to the Synfig Demo Reel&amp;quot; (I have something in the works for this one)&lt;br /&gt;
&lt;br /&gt;
Either - Cover the basics - shapes, lines, filters, distortions, transforms, etc, or just launch straight into a slide show of still images&lt;br /&gt;
&lt;br /&gt;
==== Stills ====&lt;br /&gt;
&lt;br /&gt;
* Gradients.sif&lt;br /&gt;
* wallpaper/backdrop.sif&lt;br /&gt;
Some combination of zooming in and out on the eyes of the following to demonstrate that Synfig is vector based and looks good at any resolution:-&lt;br /&gt;
* Rore's Cat&lt;br /&gt;
* Tux&lt;br /&gt;
* prologuekid.sif&lt;br /&gt;
* pirate.sif&lt;br /&gt;
* Macwolfen.sif&lt;br /&gt;
* New Julia/newjulia2.sif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Transition to -&lt;br /&gt;
&lt;br /&gt;
==== Animations ====&lt;br /&gt;
* mandelbrot.sif&lt;br /&gt;
* cells.sif&lt;br /&gt;
* noise.sif&lt;br /&gt;
* z_depth test.sif&lt;br /&gt;
* warpcube.sif&lt;br /&gt;
* Preamble taffy.sif&lt;br /&gt;
* Rotating gears by dooglus http://uk.youtube.com/watch?v=ljmQARJccYk&lt;br /&gt;
* underwater by Ulrik http://uk.youtube.com/watch?v=j7fO-1V_IFA&lt;br /&gt;
* plant growing by Ulrik http://uk.youtube.com/watch?v=UqeUOrAoziE&lt;br /&gt;
* room by Ulrik http://uk.youtube.com/watch?v=UWxj9NenDTE&lt;br /&gt;
* eye.sif http://uk.youtube.com/watch?v=nAYdf-CJwPo&lt;br /&gt;
* Eyes (by Madsen - he already gave us permission to use it in a demo reel)&lt;br /&gt;
* Synfig trailer by StephanMorin http://uk.youtube.com/watch?v=7q2jN3qcOcM&lt;br /&gt;
* Sy'n'fig by Zelig&lt;br /&gt;
* boot.sif by pxegeek - Call to action help stamp out bugs in Synfig&lt;br /&gt;
&lt;br /&gt;
* Credits&lt;br /&gt;
* links to Prologue, Werewolf&lt;br /&gt;
&lt;br /&gt;
==== Other thoughts ====&lt;br /&gt;
Need clearance from the copyright holders for the use of these works.  Please comment if it's OK or if you don't want your work used.&lt;br /&gt;
: It's OK to use any of my animations -- [[User:Dooglus|dooglus]] 04:12, 30 October 2007 (EDT)&lt;br /&gt;
: It's ok to use any of my animations and music at my site http://www.musikboden.se/mymusic/mymusic.html ----&lt;br /&gt;
Music?   If some of the more musical amongst us are willing to share their music - &lt;br /&gt;
* Madsen has some funky music that I can't begin to describe, and some nice electronic stuff also (e.g. http://laxness101.lillesvin.net/strg/lax-Lay.mp3).  &lt;br /&gt;
* Ulrik has some accordian music that may not be to everyone's taste ;) and some great piano music at http://www.musikboden.se/mymusic/solopiano/solopiano.html  (yes, I'm biased - I only try to play piano).   &lt;br /&gt;
* If we want to go up tempo, Ceox has some nice synth music that I think would work well. (Oxysphere?)&lt;br /&gt;
&lt;br /&gt;
What did I miss?&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4415</id>
		<title>DemoReel</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=DemoReel&amp;diff=4415"/>
				<updated>2007-10-30T08:38:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: /* Other thoughts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Goal ===&lt;br /&gt;
Produce a demo reel for display on Youtube, revver, etc to showcase the capabilities of Synfig, and generate interest in the community of artists and coders to use and improve Synfig.  Ideally the whole video could be produced in Synfig (excluding audio).  &lt;br /&gt;
&lt;br /&gt;
=== Proposed screenplay ===&lt;br /&gt;
Unless otherwise stated the source is from the Synfig examples.  There seems to be a recurring theme of 'eyes' here, so the tentative working title is 'The Eye's have it'.  &lt;br /&gt;
&lt;br /&gt;
==== Introduction ====&lt;br /&gt;
Open with &lt;br /&gt;
* handwritten 'synfig' by dooglus http://uk.youtube.com/watch?v=djk4B_GiN-Q&amp;amp;NR=1 &amp;lt;br&amp;gt;&lt;br /&gt;
then an animated figure synched to some speech - &amp;quot;Welcome to the Synfig Demo Reel&amp;quot; (I have something in the works for this one)&lt;br /&gt;
&lt;br /&gt;
Either - Cover the basics - shapes, lines, filters, distortions, transforms, etc, or just launch straight into a slide show of still images&lt;br /&gt;
&lt;br /&gt;
==== Stills ====&lt;br /&gt;
&lt;br /&gt;
* Gradients.sif&lt;br /&gt;
* wallpaper/backdrop.sif&lt;br /&gt;
Some combination of zooming in and out on the eyes of the following to demonstrate that Synfig is vector based and looks good at any resolution:-&lt;br /&gt;
* Rore's Cat&lt;br /&gt;
* Tux&lt;br /&gt;
* prologuekid.sif&lt;br /&gt;
* pirate.sif&lt;br /&gt;
* Macwolfen.sif&lt;br /&gt;
* New Julia/newjulia2.sif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Transition to -&lt;br /&gt;
&lt;br /&gt;
==== Animations ====&lt;br /&gt;
* mandelbrot.sif&lt;br /&gt;
* cells.sif&lt;br /&gt;
* noise.sif&lt;br /&gt;
* z_depth test.sif&lt;br /&gt;
* warpcube.sif&lt;br /&gt;
* Preamble taffy.sif&lt;br /&gt;
* Rotating gears by dooglus http://uk.youtube.com/watch?v=ljmQARJccYk&lt;br /&gt;
* underwater by Ulrik http://uk.youtube.com/watch?v=j7fO-1V_IFA&lt;br /&gt;
* plant growing by Ulrik http://uk.youtube.com/watch?v=UqeUOrAoziE&lt;br /&gt;
* room by Ulrik http://uk.youtube.com/watch?v=UWxj9NenDTE&lt;br /&gt;
* eye.sif http://uk.youtube.com/watch?v=nAYdf-CJwPo&lt;br /&gt;
* Eyes (by Madsen - he already gave us permission to use it in a demo reel)&lt;br /&gt;
* Synfig trailer by StephanMorin http://uk.youtube.com/watch?v=7q2jN3qcOcM&lt;br /&gt;
* Sy'n'fig by Zelig&lt;br /&gt;
* boot.sif by pxegeek - Call to action help stamp out bugs in Synfig&lt;br /&gt;
&lt;br /&gt;
* Credits&lt;br /&gt;
* links to Prologue, Werewolf&lt;br /&gt;
&lt;br /&gt;
==== Other thoughts ====&lt;br /&gt;
Need clearance from the copyright holders for the use of these works.  Please comment if it's OK or if you don't want your work used.&lt;br /&gt;
: It's OK to use any of my animations -- [[User:Dooglus|dooglus]] 04:12, 30 October 2007 (EDT)&lt;br /&gt;
: It's ok to use any of my animations and music at my site http://www.musikboden.se/mymusic/mymusic.html -- [[User:Ulrik]]&lt;br /&gt;
Music?   If some of the more musical amongst us are willing to share their music - &lt;br /&gt;
* Madsen has some funky music that I can't begin to describe, and some nice electronic stuff also (e.g. http://laxness101.lillesvin.net/strg/lax-Lay.mp3).  &lt;br /&gt;
* Ulrik has some accordian music that may not be to everyone's taste ;) and some great piano music at http://www.musikboden.se/mymusic/solopiano/solopiano.html  (yes, I'm biased - I only try to play piano).   &lt;br /&gt;
* If we want to go up tempo, Ceox has some nice synth music that I think would work well. (Oxysphere?)&lt;br /&gt;
&lt;br /&gt;
What did I miss?&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4259</id>
		<title>Render options</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4259"/>
				<updated>2007-10-24T20:56:15Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are the file types that can be rendered&lt;br /&gt;
&lt;br /&gt;
*bmp - Bitmap &lt;br /&gt;
*dv - digital video&lt;br /&gt;
*mpg - Motion Picture Expert Group file format for moving pictures&lt;br /&gt;
*gif - graphic interchange format&lt;br /&gt;
*imagemagick - image manipulation program&lt;br /&gt;
*jpeg - Joint Photographic Expert Group - still format suited to photographs&lt;br /&gt;
*libav - libavcodec is a free software/open source LGPL-licensed library of codecs for encoding and decoding video and audio data; it is written in the C programming language. It is part of the FFmpeg-project and many free/open source applications rely on it.&lt;br /&gt;
*null - Dummy file for rendering engine testing?&lt;br /&gt;
*null-tile - Dummy file for rendering engine testing?&lt;br /&gt;
*open-exr - Still image designed for handling Motion picture frames developed by ILM&lt;br /&gt;
*png - portable Network graphics - still images with lossless compression&lt;br /&gt;
*ppm - portable pixmap - still image using very basic format&lt;br /&gt;
*yuv420p - Still image format designed to preserve the images luminance&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Target type&lt;br /&gt;
! Extension&lt;br /&gt;
! Helper app&lt;br /&gt;
! width = &amp;quot;180&amp;quot;| &lt;br /&gt;
Linux support&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Windows support&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Mac OSX support&lt;br /&gt;
|-&lt;br /&gt;
! Auto&lt;br /&gt;
! align = &amp;quot;left&amp;quot; |&lt;br /&gt;
*.bmp-&amp;gt;bmp&lt;br /&gt;
*.dv-&amp;gt;dv_trgt&lt;br /&gt;
*.mpg-&amp;gt;ffmpeg_trg&lt;br /&gt;
*.gif-&amp;gt;gif&lt;br /&gt;
*.miff-&amp;gt;imagemagick_trgt&lt;br /&gt;
*.jpg-&amp;gt;jpeg_trgt&lt;br /&gt;
*.avi-&amp;gt;Target_LibAVCodec&lt;br /&gt;
*.mng-&amp;gt;mng_trgt&lt;br /&gt;
*.exr-&amp;gt;exr_trgt&lt;br /&gt;
*.png-&amp;gt;png_trgt&lt;br /&gt;
*.ppm-&amp;gt;ppm&lt;br /&gt;
*.yuv-&amp;gt;yuv&lt;br /&gt;
! Determined by extension&lt;br /&gt;
(if you're lucky!)&lt;br /&gt;
! align = &amp;quot;left&amp;quot; width = &amp;quot;180&amp;quot;|&lt;br /&gt;
*.bmp-&amp;gt;bmp OK&lt;br /&gt;
*.dv-&amp;gt;dv OK &lt;br /&gt;
*.mpg-&amp;gt;not render [[#note 3|3]]&lt;br /&gt;
*.gif-&amp;gt;gif OK&lt;br /&gt;
*.miff-&amp;gt;OK (only last frame?)&lt;br /&gt;
*.jpg-&amp;gt;jpg OK&lt;br /&gt;
*.avi-&amp;gt;crash [[#note 1|1]] &lt;br /&gt;
*.mng-&amp;gt; not render [[#note 6|6]]&lt;br /&gt;
*.exr-&amp;gt;exr OK&lt;br /&gt;
*.png-&amp;gt;png OK&lt;br /&gt;
*.ppm-&amp;gt;ppm OK&lt;br /&gt;
*.yuv-&amp;gt;yuv OK? [[#note 5|5]]&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Seems to generate a bmp (or series of bmps) regardless of extension.&lt;br /&gt;
! align = &amp;quot;left&amp;quot;  width = &amp;quot;180&amp;quot;|&lt;br /&gt;
*.bmp-ok, but text layers upside down&lt;br /&gt;
*.dv-crash synfig&lt;br /&gt;
*.mpg-crash synfig&lt;br /&gt;
*.gif-ok, also animated gif&lt;br /&gt;
*.miff-crash synfig&lt;br /&gt;
*.jpg-ok&lt;br /&gt;
*.avi-crash synfig&lt;br /&gt;
*.mng-&amp;quot;unable to create target for...&lt;br /&gt;
*.mov-&amp;quot;unable to create target for...&lt;br /&gt;
*.exr-&amp;quot;unable to create target for...&lt;br /&gt;
*.png-ok&lt;br /&gt;
*.ppm-ok&lt;br /&gt;
*yuv-render a file in unknown format&lt;br /&gt;
|-&lt;br /&gt;
! bmp&lt;br /&gt;
! bmp&lt;br /&gt;
! Native&lt;br /&gt;
! ?&lt;br /&gt;
! Yes&lt;br /&gt;
! bmp-ok, but text layers upside down&lt;br /&gt;
|-&lt;br /&gt;
! dv&lt;br /&gt;
! dv&lt;br /&gt;
! encodedv&lt;br /&gt;
! ?&lt;br /&gt;
! untested&lt;br /&gt;
! .dv-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! mpg&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Working with FFMpeg 10464 and SVN 934&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.mpg-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! gif&lt;br /&gt;
! gif&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes (animated gifs also)&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.gif-ok&lt;br /&gt;
|-&lt;br /&gt;
! imagemagick&lt;br /&gt;
! miff&lt;br /&gt;
! imagemagick&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Renders to a readable file, but the image is corrupted in builds prior to SVN 934.  Working in 934 and later (October 17th 2007).  &lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.miff-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! jpeg&lt;br /&gt;
! jpg&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.jpg-ok&lt;br /&gt;
|-&lt;br /&gt;
! null&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! null-tile&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! open-exr&lt;br /&gt;
! exr&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
n/a&lt;br /&gt;
|-&lt;br /&gt;
! png&lt;br /&gt;
! png&lt;br /&gt;
! native*.mpg-&amp;gt;&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.png-ok&lt;br /&gt;
|- &lt;br /&gt;
! ppm&lt;br /&gt;
! ppm&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.ppm-ok&lt;br /&gt;
|- &lt;br /&gt;
! yuv420&lt;br /&gt;
! yuv&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes &lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.yuv-render file in unknown format&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rendering to Video ===&lt;br /&gt;
Rendering to video directly from Synfig under Windows presents some challenges.  &lt;br /&gt;
&lt;br /&gt;
If you want to render to anything other than mpg with ffmpeg, you'll want to save a series of images that represent your animation, to a still format that ffmpeg can read.  I recommend png.  Whilst you can render to any size image, if you're going to show your video on Youtube*.mpg-&amp;gt;, you may want to take that into account when you render. &lt;br /&gt;
&lt;br /&gt;
If you set up your render like [[Image:Render.png]]&lt;br /&gt;
&lt;br /&gt;
Image size - &lt;br /&gt;
width 320 Xres 72.0 Phys width 4.44&lt;br /&gt;
Height 240 Yres 72.0 Phys Height 3.33&lt;br /&gt;
(Image span 11.0127&lt;br /&gt;
&lt;br /&gt;
Image area&lt;br /&gt;
Top left X: -3.67 Y:4.2&lt;br /&gt;
Bottom right X: 3.67 y:-4.2)&lt;br /&gt;
&lt;br /&gt;
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 - &lt;br /&gt;
&lt;br /&gt;
C:\output&amp;gt;ffmpeg -r 15 -i rfrac%04d.png -f flv fractal.flv&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
=== Linux notes ===&lt;br /&gt;
&lt;br /&gt;
==== note 1 ====&lt;br /&gt;
The extension is recognized but it crashed. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&amp;lt;code&amp;gt; synfig(5882): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi'; extension: 'avi'&lt;br /&gt;
 synfig(5882): info: 'avi' is a known extension - using target 'libav' Output #0, avi, to '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi':&lt;br /&gt;
   Stream #0.0: Video: mpeg4 (hq), yuv420p, 480x270, q=2-31, 925 kb/s, 24.00 fps(c)&lt;br /&gt;
 Fallo de segmentación (core dumped)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 3 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Target initialisation failure''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/mpg-auto/RenderTest.mpg'; extension: 'mpg' &lt;br /&gt;
 synfig(6303): info: 'mpg' is a known extension - using target 'ffmpeg'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to ffmpeg&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 5 ====&lt;br /&gt;
&lt;br /&gt;
The yuv file is rendered but it seems to have a not compatible format. See the console output when try to convert to a avi using ffmepg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i RenderTest.yuv -sameq RenderTest.avi&lt;br /&gt;
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2004 Fabrice Bellard&lt;br /&gt;
  configuration:  --enable-gpl --enable-pp --enable-pthreads --enable-vorbis --enable-libogg --enable-a52 --enable-dts --enable-libgsm --enable-dc1394 --disable-debug --enable-shared --prefix=/usr &lt;br /&gt;
  libavutil version: 0d.49.0.0&lt;br /&gt;
  libavcodec version: 0d.51.11.0&lt;br /&gt;
  libavformat version: 0d.50.5.0&lt;br /&gt;
  built on Sep 20 2006 00:26:15, gcc: 4.1.2 20060906 (prerelease) (Ubuntu 4.1.1-13ubuntu2)&lt;br /&gt;
 picture size invalid (0x0)&lt;br /&gt;
 [rawvideo @ 0xb7f47c30]Could not find codec parameters (Video: rawvideo, yuv420p)&lt;br /&gt;
 RenderTest.yuv: could not find codec parameters&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 6 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Unable to create target for /home/carlos/Videos/pruebasynfig/RenderTest/mng-auto/RenderTest.mng''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945)&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4257</id>
		<title>Render options</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4257"/>
				<updated>2007-10-24T20:46:24Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: osx render results&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are the file types that can be rendered&lt;br /&gt;
&lt;br /&gt;
*bmp - Bitmap &lt;br /&gt;
*dv - digital video&lt;br /&gt;
*mpg - Motion Picture Expert Group file format for moving pictures&lt;br /&gt;
*gif - graphic interchange format&lt;br /&gt;
*imagemagick - image manipulation program&lt;br /&gt;
*jpeg - Joint Photographic Expert Group - still format suited to photographs&lt;br /&gt;
*libav - libavcodec is a free software/open source LGPL-licensed library of codecs for encoding and decoding video and audio data; it is written in the C programming language. It is part of the FFmpeg-project and many free/open source applications rely on it.&lt;br /&gt;
*null - Dummy file for rendering engine testing?&lt;br /&gt;
*null-tile - Dummy file for rendering engine testing?&lt;br /&gt;
*open-exr - Still image designed for handling Motion picture frames developed by ILM&lt;br /&gt;
*png - portable Network graphics - still images with lossless compression&lt;br /&gt;
*ppm - portable pixmap - still image using very basic format&lt;br /&gt;
*yuv420p - Still image format designed to preserve the images luminance&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Target type&lt;br /&gt;
! Extension&lt;br /&gt;
! Helper app&lt;br /&gt;
! width = &amp;quot;180&amp;quot;| &lt;br /&gt;
Linux support&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Windows support&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Mac OSX support&lt;br /&gt;
|-&lt;br /&gt;
! Auto&lt;br /&gt;
! align = &amp;quot;left&amp;quot; |&lt;br /&gt;
*.bmp-&amp;gt;bmp&lt;br /&gt;
*.dv-&amp;gt;dv_trgt&lt;br /&gt;
*.mpg-&amp;gt;ffmpeg_trg&lt;br /&gt;
*.gif-&amp;gt;gif&lt;br /&gt;
*.miff-&amp;gt;imagemagick_trgt&lt;br /&gt;
*.jpg-&amp;gt;jpeg_trgt&lt;br /&gt;
*.avi-&amp;gt;Target_LibAVCodec&lt;br /&gt;
*.mng-&amp;gt;mng_trgt&lt;br /&gt;
*.exr-&amp;gt;exr_trgt&lt;br /&gt;
*.png-&amp;gt;png_trgt&lt;br /&gt;
*.ppm-&amp;gt;ppm&lt;br /&gt;
*.yuv-&amp;gt;yuv&lt;br /&gt;
! Determined by extension&lt;br /&gt;
(if you're lucky!)&lt;br /&gt;
! align = &amp;quot;left&amp;quot; width = &amp;quot;180&amp;quot;|&lt;br /&gt;
*.bmp-&amp;gt;bmp OK&lt;br /&gt;
*.dv-&amp;gt;not render [[#note 2|2]]&lt;br /&gt;
*.mpg-&amp;gt;not render [[#note 3|3]]&lt;br /&gt;
*.gif-&amp;gt;gif OK&lt;br /&gt;
*.miff-&amp;gt;crash [[#note 4|4]]&lt;br /&gt;
*.jpg-&amp;gt;jpg OK&lt;br /&gt;
*.avi-&amp;gt;crash [[#note 1|1]] &lt;br /&gt;
*.mng-&amp;gt; not render [[#note 6|6]]&lt;br /&gt;
*.exr-&amp;gt;exr OK&lt;br /&gt;
*.png-&amp;gt;png OK&lt;br /&gt;
*.ppm-&amp;gt;ppm OK&lt;br /&gt;
*.yuv-&amp;gt;yuv OK? [[#note 5|5]]&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Seems to generate a bmp (or series of bmps) regardless of extension.&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
*.bmp-ok, but text layers upside down&lt;br /&gt;
*.dv-crash synfig&lt;br /&gt;
*.mpg-crash synfig&lt;br /&gt;
*.gif-ok, also animated gif&lt;br /&gt;
*.miff-crash synfig&lt;br /&gt;
*.jpg-ok&lt;br /&gt;
*.avi-crash synfig&lt;br /&gt;
*.mng-&amp;quot;unable to create target for...&lt;br /&gt;
*.mov-&amp;quot;unable to create target for...&lt;br /&gt;
*.exr-&amp;quot;unable to create target for...&lt;br /&gt;
*.png-ok&lt;br /&gt;
*.ppm-ok&lt;br /&gt;
*yuv-render a file in unknown format&lt;br /&gt;
|-&lt;br /&gt;
! bmp&lt;br /&gt;
! bmp&lt;br /&gt;
! Native&lt;br /&gt;
! ?&lt;br /&gt;
! Yes&lt;br /&gt;
! bmp-ok, but text layers upside down&lt;br /&gt;
|-&lt;br /&gt;
! dv&lt;br /&gt;
! dv&lt;br /&gt;
! encodedv&lt;br /&gt;
! ?&lt;br /&gt;
! untested&lt;br /&gt;
! .dv-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! mpg&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Working with FFMpeg 10464 and SVN 934&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.mpg-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! gif&lt;br /&gt;
! gif&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes (animated gifs also)&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.gif-ok&lt;br /&gt;
|-&lt;br /&gt;
! imagemagick&lt;br /&gt;
! miff&lt;br /&gt;
! imagemagick&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
Renders to a readable file, but the image is corrupted in builds prior to SVN 934.  Working in 934 and later (October 17th 2007).  &lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.miff-crash synfig&lt;br /&gt;
|-&lt;br /&gt;
! jpeg&lt;br /&gt;
! jpg&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.jpg-ok&lt;br /&gt;
|-&lt;br /&gt;
! null&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! null-tile&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! open-exr&lt;br /&gt;
! exr&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
n/a&lt;br /&gt;
|-&lt;br /&gt;
! png&lt;br /&gt;
! png&lt;br /&gt;
! native*.mpg-&amp;gt;&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.png-ok&lt;br /&gt;
|- &lt;br /&gt;
! ppm&lt;br /&gt;
! ppm&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.ppm-ok&lt;br /&gt;
|- &lt;br /&gt;
! yuv420&lt;br /&gt;
! yuv&lt;br /&gt;
! native&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
?&lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
yes &lt;br /&gt;
! width = &amp;quot;180&amp;quot;|&lt;br /&gt;
.yuv-render file in unknown format&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rendering to Video ===&lt;br /&gt;
Rendering to video directly from Synfig under Windows presents some challenges.  &lt;br /&gt;
&lt;br /&gt;
If you want to render to anything other than mpg with ffmpeg, you'll want to save a series of images that represent your animation, to a still format that ffmpeg can read.  I recommend png.  Whilst you can render to any size image, if you're going to show your video on Youtube*.mpg-&amp;gt;, you may want to take that into account when you render. &lt;br /&gt;
&lt;br /&gt;
If you set up your render like [[Image:Render.png]]&lt;br /&gt;
&lt;br /&gt;
Image size - &lt;br /&gt;
width 320 Xres 72.0 Phys width 4.44&lt;br /&gt;
Height 240 Yres 72.0 Phys Height 3.33&lt;br /&gt;
(Image span 11.0127&lt;br /&gt;
&lt;br /&gt;
Image area&lt;br /&gt;
Top left X: -3.67 Y:4.2&lt;br /&gt;
Bottom right X: 3.67 y:-4.2)&lt;br /&gt;
&lt;br /&gt;
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 - &lt;br /&gt;
&lt;br /&gt;
C:\output&amp;gt;ffmpeg -r 15 -i rfrac%04d.png -f flv fractal.flv&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
=== Linux notes ===&lt;br /&gt;
&lt;br /&gt;
==== note 1 ====&lt;br /&gt;
The extension is recognized but it crashed. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&amp;lt;code&amp;gt; synfig(5882): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi'; extension: 'avi'&lt;br /&gt;
 synfig(5882): info: 'avi' is a known extension - using target 'libav' Output #0, avi, to '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi':&lt;br /&gt;
   Stream #0.0: Video: mpeg4 (hq), yuv420p, 480x270, q=2-31, 925 kb/s, 24.00 fps(c)&lt;br /&gt;
 Fallo de segmentación (core dumped)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 2 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Target initialisation failure''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/dv-auto/RenderTest.dv'; extension: 'dv' &lt;br /&gt;
 synfig(6303): info: 'dv' is a known extension - using target 'dv'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to encodedv&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 3 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Target initialisation failure''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/mpg-auto/RenderTest.mpg'; extension: 'mpg' &lt;br /&gt;
 synfig(6303): info: 'mpg' is a known extension - using target 'ffmpeg'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to ffmpeg&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 4 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it crashed. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/miff-auto/RenderTest.miff'; extension: 'miff' &lt;br /&gt;
 synfig(6303): info: 'miff' is a known extension - using target 'imagemagick'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to imagemagick's convert utility&lt;br /&gt;
&lt;br /&gt;
 glibmm-ERROR **: &lt;br /&gt;
 unhandled exception (type unknown) in signal handler&lt;br /&gt;
&lt;br /&gt;
 aborting...&lt;br /&gt;
 Cancelado (core dumped)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 5 ====&lt;br /&gt;
&lt;br /&gt;
The yuv file is rendered but it seems to have a not compatible format. See the console output when try to convert to a avi using ffmepg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i RenderTest.yuv -sameq RenderTest.avi&lt;br /&gt;
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2004 Fabrice Bellard&lt;br /&gt;
  configuration:  --enable-gpl --enable-pp --enable-pthreads --enable-vorbis --enable-libogg --enable-a52 --enable-dts --enable-libgsm --enable-dc1394 --disable-debug --enable-shared --prefix=/usr &lt;br /&gt;
  libavutil version: 0d.49.0.0&lt;br /&gt;
  libavcodec version: 0d.51.11.0&lt;br /&gt;
  libavformat version: 0d.50.5.0&lt;br /&gt;
  built on Sep 20 2006 00:26:15, gcc: 4.1.2 20060906 (prerelease) (Ubuntu 4.1.1-13ubuntu2)&lt;br /&gt;
 picture size invalid (0x0)&lt;br /&gt;
 [rawvideo @ 0xb7f47c30]Could not find codec parameters (Video: rawvideo, yuv420p)&lt;br /&gt;
 RenderTest.yuv: could not find codec parameters&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 6 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Unable to create target for /home/carlos/Videos/pruebasynfig/RenderTest/mng-auto/RenderTest.mng''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945)&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User_talk:Ulrik&amp;diff=4254</id>
		<title>User talk:Ulrik</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User_talk:Ulrik&amp;diff=4254"/>
				<updated>2007-10-24T13:53:45Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: New page: i'm trying to fit in the rendering support for mac osx, I've test rendered all formats in auto and with target, but i don't know how to edit the wiki.....&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;i'm trying to fit in the rendering support for mac osx, I've test rendered all formats in auto and with target, but i don't know how to edit the wiki.....&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4253</id>
		<title>Render options</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Render_options&amp;diff=4253"/>
				<updated>2007-10-24T13:46:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here are the file types that can be rendered&lt;br /&gt;
&lt;br /&gt;
*bmp - Bitmap &lt;br /&gt;
*dv - digital video&lt;br /&gt;
*mpg - Motion Picture Expert Group file format for moving pictures&lt;br /&gt;
*gif - graphic interchange format&lt;br /&gt;
*imagemagick - image manipulation program&lt;br /&gt;
*jpeg - Joint Photographic Expert Group - still format suited to photographs&lt;br /&gt;
*libav - libavcodec is a free software/open source LGPL-licensed library of codecs for encoding and decoding video and audio data; it is written in the C programming language. It is part of the FFmpeg-project and many free/open source applications rely on it.&lt;br /&gt;
*null - Dummy file for rendering engine testing?&lt;br /&gt;
*null-tile - Dummy file for rendering engine testing?&lt;br /&gt;
*open-exr - Still image designed for handling Motion picture frames developed by ILM&lt;br /&gt;
*png - portable Network graphics - still images with lossless compression&lt;br /&gt;
*ppm - portable pixmap - still image using very basic format&lt;br /&gt;
*yuv420p - Still image format designed to preserve the images luminance&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Target type&lt;br /&gt;
! Extension&lt;br /&gt;
! Helper app&lt;br /&gt;
! width = &amp;quot;250&amp;quot;| &lt;br /&gt;
Linux support&lt;br /&gt;
! Windows support&lt;br /&gt;
! Mac OSX support&lt;br /&gt;
|-&lt;br /&gt;
! Auto&lt;br /&gt;
! align = &amp;quot;left&amp;quot; |&lt;br /&gt;
*.bmp-&amp;gt;bmp&lt;br /&gt;
*.dv-&amp;gt;dv_trgt&lt;br /&gt;
*.mpg-&amp;gt;ffmpeg_trg&lt;br /&gt;
*.gif-&amp;gt;gif&lt;br /&gt;
*.miff-&amp;gt;imagemagick_trgt&lt;br /&gt;
*.jpg-&amp;gt;jpeg_trgt&lt;br /&gt;
*.avi-&amp;gt;Target_LibAVCodec&lt;br /&gt;
*.mng-&amp;gt;mng_trgt&lt;br /&gt;
*.exr-&amp;gt;exr_trgt&lt;br /&gt;
*.png-&amp;gt;png_trgt&lt;br /&gt;
*.ppm-&amp;gt;ppm&lt;br /&gt;
*.yuv-&amp;gt;yuv&lt;br /&gt;
! Determined by extension (if you're lucky!)&lt;br /&gt;
! align = &amp;quot;left&amp;quot; |&lt;br /&gt;
*.bmp-&amp;gt;bmp OK&lt;br /&gt;
*.dv-&amp;gt;not render [[#note 2|2]]&lt;br /&gt;
*.mpg-&amp;gt;not render [[#note 3|3]]&lt;br /&gt;
*.gif-&amp;gt;gif OK&lt;br /&gt;
*.miff-&amp;gt;crash [[#note 4|4]]&lt;br /&gt;
*.jpg-&amp;gt;jpg OK&lt;br /&gt;
*.avi-&amp;gt;crash [[#note 1|1]] &lt;br /&gt;
*.mng-&amp;gt; not render [[#note 6|6]]&lt;br /&gt;
*.exr-&amp;gt;exr OK&lt;br /&gt;
*.png-&amp;gt;png OK&lt;br /&gt;
*.ppm-&amp;gt;ppm OK&lt;br /&gt;
*.yuv-&amp;gt;yuv OK? [[#note 5|5]]&lt;br /&gt;
! Seems to generate a bmp (or series of bmps) regardless of extension.&lt;br /&gt;
|-&lt;br /&gt;
! bmp&lt;br /&gt;
! bmp&lt;br /&gt;
! Native&lt;br /&gt;
! ?&lt;br /&gt;
! Yes&lt;br /&gt;
|-&lt;br /&gt;
! dv&lt;br /&gt;
! dv&lt;br /&gt;
! encodedv&lt;br /&gt;
! ?&lt;br /&gt;
! untested&lt;br /&gt;
|-&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! mpg&lt;br /&gt;
! ffmpeg&lt;br /&gt;
! ?&lt;br /&gt;
! Working with FFMpeg 10464 and SVN 934&lt;br /&gt;
|-&lt;br /&gt;
! gif&lt;br /&gt;
! gif&lt;br /&gt;
! native&lt;br /&gt;
! ?&lt;br /&gt;
! yes (animated gifs also)&lt;br /&gt;
|-&lt;br /&gt;
! imagemagick&lt;br /&gt;
! miff&lt;br /&gt;
! imagemagick&lt;br /&gt;
! ?&lt;br /&gt;
! Renders to a readable file, but the image is corrupted in builds prior to SVN 934.  Working in 934 and later (October 17th 2007).  &lt;br /&gt;
|-&lt;br /&gt;
! jpeg&lt;br /&gt;
! jpg&lt;br /&gt;
! native&lt;br /&gt;
! ?&lt;br /&gt;
! yes&lt;br /&gt;
|-&lt;br /&gt;
! null&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! null-tile&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
! n/a&lt;br /&gt;
|-&lt;br /&gt;
! open-exr&lt;br /&gt;
! exr&lt;br /&gt;
! native&lt;br /&gt;
! ?&lt;br /&gt;
! yes&lt;br /&gt;
|-&lt;br /&gt;
! png&lt;br /&gt;
! png&lt;br /&gt;
! native*.mpg-&amp;gt;&lt;br /&gt;
! ?&lt;br /&gt;
! yes&lt;br /&gt;
|- &lt;br /&gt;
! ppm&lt;br /&gt;
! ppm&lt;br /&gt;
! native&lt;br /&gt;
! ?&lt;br /&gt;
! yes&lt;br /&gt;
|- &lt;br /&gt;
! yuv420&lt;br /&gt;
! yuv&lt;br /&gt;
! native&lt;br /&gt;
! ?&lt;br /&gt;
! yes &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rendering to Video ===&lt;br /&gt;
Rendering to video directly from Synfig under Windows presents some challenges.  &lt;br /&gt;
&lt;br /&gt;
If you want to render to anything other than mpg with ffmpeg, you'll want to save a series of images that represent your animation, to a still format that ffmpeg can read.  I recommend png.  Whilst you can render to any size image, if you're going to show your video on Youtube*.mpg-&amp;gt;, you may want to take that into account when you render. &lt;br /&gt;
&lt;br /&gt;
If you set up your render like [[Image:Render.png]]&lt;br /&gt;
&lt;br /&gt;
Image size - &lt;br /&gt;
width 320 Xres 72.0 Phys width 4.44&lt;br /&gt;
Height 240 Yres 72.0 Phys Height 3.33&lt;br /&gt;
(Image span 11.0127&lt;br /&gt;
&lt;br /&gt;
Image area&lt;br /&gt;
Top left X: -3.67 Y:4.2&lt;br /&gt;
Bottom right X: 3.67 y:-4.2)&lt;br /&gt;
&lt;br /&gt;
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 - &lt;br /&gt;
&lt;br /&gt;
C:\output&amp;gt;ffmpeg -r 15 -i rfrac%04d.png -f flv fractal.flv&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
=== Linux notes ===&lt;br /&gt;
&lt;br /&gt;
==== note 1 ====&lt;br /&gt;
The extension is recognized but it crashed. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&amp;lt;code&amp;gt; synfig(5882): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi'; extension: 'avi'&lt;br /&gt;
 synfig(5882): info: 'avi' is a known extension - using target 'libav' Output #0, avi, to '/home/carlos/Videos/pruebasynfig/RenderTest/avi-auto/RenderTest.avi':&lt;br /&gt;
   Stream #0.0: Video: mpeg4 (hq), yuv420p, 480x270, q=2-31, 925 kb/s, 24.00 fps(c)&lt;br /&gt;
 Fallo de segmentación (core dumped)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 2 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Target initialisation failure''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/dv-auto/RenderTest.dv'; extension: 'dv' &lt;br /&gt;
 synfig(6303): info: 'dv' is a known extension - using target 'dv'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to encodedv&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 3 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Target initialisation failure''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/mpg-auto/RenderTest.mpg'; extension: 'mpg' &lt;br /&gt;
 synfig(6303): info: 'mpg' is a known extension - using target 'ffmpeg'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to ffmpeg&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 4 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it crashed. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945). The console output is this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
 synfig(6303): info: render target filename: '/home/carlos/Videos/pruebasynfig/RenderTest/miff-auto/RenderTest.miff'; extension: 'miff' &lt;br /&gt;
 synfig(6303): info: 'miff' is a known extension - using target 'imagemagick'&lt;br /&gt;
 synfig(6303): error: Unable to open pipe to imagemagick's convert utility&lt;br /&gt;
&lt;br /&gt;
 glibmm-ERROR **: &lt;br /&gt;
 unhandled exception (type unknown) in signal handler&lt;br /&gt;
&lt;br /&gt;
 aborting...&lt;br /&gt;
 Cancelado (core dumped)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== note 5 ====&lt;br /&gt;
&lt;br /&gt;
The yuv file is rendered but it seems to have a not compatible format. See the console output when try to convert to a avi using ffmepg.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i RenderTest.yuv -sameq RenderTest.avi&lt;br /&gt;
FFmpeg version SVN-rUNKNOWN, Copyright (c) 2000-2004 Fabrice Bellard&lt;br /&gt;
  configuration:  --enable-gpl --enable-pp --enable-pthreads --enable-vorbis --enable-libogg --enable-a52 --enable-dts --enable-libgsm --enable-dc1394 --disable-debug --enable-shared --prefix=/usr &lt;br /&gt;
  libavutil version: 0d.49.0.0&lt;br /&gt;
  libavcodec version: 0d.51.11.0&lt;br /&gt;
  libavformat version: 0d.50.5.0&lt;br /&gt;
  built on Sep 20 2006 00:26:15, gcc: 4.1.2 20060906 (prerelease) (Ubuntu 4.1.1-13ubuntu2)&lt;br /&gt;
 picture size invalid (0x0)&lt;br /&gt;
 [rawvideo @ 0xb7f47c30]Could not find codec parameters (Video: rawvideo, yuv420p)&lt;br /&gt;
 RenderTest.yuv: could not find codec parameters&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== note 6 ====&lt;br /&gt;
&lt;br /&gt;
The extension is recognized but it shows this pop-up window message: ''Unable to create target for /home/carlos/Videos/pruebasynfig/RenderTest/mng-auto/RenderTest.mng''. Please report if it renders in your machine (Using Ubuntu 6.10 and svn 945)&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Doc:Rescale_Animations&amp;diff=4233</id>
		<title>Doc:Rescale Animations</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Doc:Rescale_Animations&amp;diff=4233"/>
				<updated>2007-10-18T21:08:02Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: /* Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Rescale an animation means modify the initial and final times where a portion of animation is shown. Imagine that you have created a complex animation for cretain objects, but when you watch it with the rest of the backgrounds or other animated objects it seems to be &amp;quot;out of time&amp;quot; (too late, too soon, too slow or too quick). You would like to modify the animation smoothly from one time segment [A-B] to other [C-D]. But how?... &lt;br /&gt;
&lt;br /&gt;
You could think on move the waypoints one by one and rescale the animation manually. Although it could be possible, most of the times it would be tedious and  fruitless.&lt;br /&gt;
&lt;br /&gt;
With synfig it will be easy to do.&lt;br /&gt;
&lt;br /&gt;
== Encapsulate the layers ==&lt;br /&gt;
&lt;br /&gt;
First of all you need to encapsulate the layers that are going to be rescaled in time. It is needed to make use of the [[Time Offset Parameter]] of the [[Paste Canvas]] layer.&lt;br /&gt;
&lt;br /&gt;
== Understanding what are we rescaling ==&lt;br /&gt;
&lt;br /&gt;
We want to rescale from [A-B] to [C-D]. So we want that when the original animation reach the A time then it would be reached at time C instead. Same apply to B and D. But if you move the animation in that way, what happened to frames before frame A that now are before C? and what happened to frames after B that are now after D?. They're rescaled too. Is that what we want?. In the most general case we would like the frames 0f to A' (A'&amp;lt;A) and B' to the end of the animation (B'&amp;gt;B) to be untouched.&lt;br /&gt;
&lt;br /&gt;
There are some conditions that the rescaled time segment [A-B], the desired time segment [C-D] and the untouched segments [0f-A'] and [B'- end] must fulfil:&lt;br /&gt;
&lt;br /&gt;
# Frame A must be smaller than frame B. Obviously&lt;br /&gt;
# Frame C must be smaller than D. &lt;br /&gt;
# Frame A' must be smaller than A&lt;br /&gt;
# Frame B' must be greater than B&lt;br /&gt;
# Frames C and D must be smaller than B' and bigger than A'&lt;br /&gt;
&lt;br /&gt;
[[Image:RescaleDiagram.png]]&lt;br /&gt;
 (this diagram was done in synfig :D)&lt;br /&gt;
&lt;br /&gt;
== Using the Paste canvas ==&lt;br /&gt;
&lt;br /&gt;
Once that we know what are rescaling then lets modify the animation to make those changes on it. &lt;br /&gt;
&lt;br /&gt;
Go to the Paste canvas you have obtained in the first step and go to its [[Time Offset Parameter]]. You have to insert the following waypoints in the animation of that parameter:&lt;br /&gt;
&lt;br /&gt;
# At frame A' insert a value of 0f. This will maintain this frame untouched (and the ones that are before also if there are no more waypoints there).&lt;br /&gt;
# At frame C insert the result of subtract from the time value at frame A the time value at frame C (that is C-A in time units). It could be positive or negative. In the sample diagram is negative and corresponds to -2s6f if the animation is at 24fps and we assume that each division in the diagram is a second.&lt;br /&gt;
# At frame D insert the result of subtract from the time value at frame B the time value at frame D (that is D-B in time units). It could be positive or negative. In the sample diagram is negative and corresponds to -18f if the animation is at 24 fps and we assume that each division in the diagram is a second.&lt;br /&gt;
# At frame B' insert a value of 0f. This will maintain this frame untouched (and the ones that are after also if there are no more waypoints there).&lt;br /&gt;
&lt;br /&gt;
'''IMPORTANT''': all the inserted waypoints must have linear interpolation. If not you will change the original timing of the animation. To make it easy just select Linear on the default interpolation parameter on the tool box window.&lt;br /&gt;
&lt;br /&gt;
==TO DO ==&lt;br /&gt;
Include links to other wiki pages.&lt;br /&gt;
Include an animation sample.&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3977</id>
		<title>Tutorials</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3977"/>
				<updated>2007-10-02T23:30:03Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an index of all of the tutorials for Synfig Studio.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|'''Tutorial Name'''||'''Description''' || '''Level'''&lt;br /&gt;
|-&lt;br /&gt;
| [[Getting Started]] [[http://www.synfig.com/synfig_tutorial.pdf PDF]] || New to Synfig Studio? This tutorial will help you get the gist of things || Basic&lt;br /&gt;
|-&lt;br /&gt;
| [[Animation Basics]] || Introduction to making things move, the timeline, and the keyframe dialog. || Basic&lt;br /&gt;
|-&lt;br /&gt;
| [[Adding Layers]] || Introduction to the Layers palette, and basics of compositing. || Basic&lt;br /&gt;
|-&lt;br /&gt;
| [[Creating Shapes]] || Introduction to making shapes using the bline and normal tools. || Basic&lt;br /&gt;
|-&lt;br /&gt;
| [[How do I|How do I...?]] || Quick tutorials, and commonly-needed tasks. || Basic&lt;br /&gt;
|-&lt;br /&gt;
| [[PictureTutorial|Timonator's newbie tutorial with pictures!]] || a WIP tutorial with lots of screenshots. || Not defined&lt;br /&gt;
|-&lt;br /&gt;
| [[Flower Animation]] || A beginner tutorial, showing animation with blines. It could be a good tutorial to follow, after the Animations Basics one. || Intermediate&lt;br /&gt;
|-&lt;br /&gt;
| [[Building a magnifying glass]] [[http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf PDF]] || A tutorial showing how to build a magnifying glass. || Intermediate&lt;br /&gt;
|-&lt;br /&gt;
| [[Following a BLine]] || A tutorial showing how to make a layer follow a BLine rotating to face the direction it's moving in. || Advanced&lt;br /&gt;
|-&lt;br /&gt;
| [[Walk Cycle]] || Tutorial showing import of multiple still frames, and rotoscoping to generate a walk cycle animation || Advanced&lt;br /&gt;
|-&lt;br /&gt;
| [[Reuse Animations]] || Tutorial that explains how to reuse &amp;quot;poses&amp;quot; of portions of the scene without interfere on the rest of it. || Advanced&lt;br /&gt;
|-&lt;br /&gt;
| [[Switching Scenes]] || Tutorial that explains how to edit a collection of .sif files together and switch back and forth between them. || Advanced&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Keyboard Shortcuts]]&lt;br /&gt;
&lt;br /&gt;
General animation tutorial links:&lt;br /&gt;
&lt;br /&gt;
[http://www.keithlango.com/tutorials/old/popThru/popThru.html Keith Largo Tutes]&lt;br /&gt;
&lt;br /&gt;
[http://www.animationarchive.org/2006/05/meta-100000-animation-drawing-course.html The Animation Drawing Course at The Animation Archive] &lt;br /&gt;
&lt;br /&gt;
[http://www.garycmartin.com/mouth_shapes.html Lip Sync]&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial39.jpg&amp;diff=3817</id>
		<title>File:Magnifying glass tutorial39.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial39.jpg&amp;diff=3817"/>
				<updated>2007-09-30T17:29:33Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial37.jpg&amp;diff=3816</id>
		<title>File:Magnifying glass tutorial37.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial37.jpg&amp;diff=3816"/>
				<updated>2007-09-30T17:29:18Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial35.jpg&amp;diff=3815</id>
		<title>File:Magnifying glass tutorial35.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial35.jpg&amp;diff=3815"/>
				<updated>2007-09-30T17:28:53Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial34.jpg&amp;diff=3814</id>
		<title>File:Magnifying glass tutorial34.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial34.jpg&amp;diff=3814"/>
				<updated>2007-09-30T17:28:40Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial30.jpg&amp;diff=3813</id>
		<title>File:Magnifying glass tutorial30.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial30.jpg&amp;diff=3813"/>
				<updated>2007-09-30T17:28:29Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial28.jpg&amp;diff=3812</id>
		<title>File:Magnifying glass tutorial28.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial28.jpg&amp;diff=3812"/>
				<updated>2007-09-30T17:28:17Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial27.jpg&amp;diff=3811</id>
		<title>File:Magnifying glass tutorial27.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial27.jpg&amp;diff=3811"/>
				<updated>2007-09-30T17:28:06Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial26.jpg&amp;diff=3810</id>
		<title>File:Magnifying glass tutorial26.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial26.jpg&amp;diff=3810"/>
				<updated>2007-09-30T17:27:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial24.jpg&amp;diff=3809</id>
		<title>File:Magnifying glass tutorial24.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial24.jpg&amp;diff=3809"/>
				<updated>2007-09-30T17:27:43Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial22.jpg&amp;diff=3808</id>
		<title>File:Magnifying glass tutorial22.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial22.jpg&amp;diff=3808"/>
				<updated>2007-09-30T17:27:33Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial20.jpg&amp;diff=3807</id>
		<title>File:Magnifying glass tutorial20.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial20.jpg&amp;diff=3807"/>
				<updated>2007-09-30T17:27:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial17.jpg&amp;diff=3806</id>
		<title>File:Magnifying glass tutorial17.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial17.jpg&amp;diff=3806"/>
				<updated>2007-09-30T17:27:08Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial16.jpg&amp;diff=3805</id>
		<title>File:Magnifying glass tutorial16.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial16.jpg&amp;diff=3805"/>
				<updated>2007-09-30T17:26:57Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial15.jpg&amp;diff=3804</id>
		<title>File:Magnifying glass tutorial15.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial15.jpg&amp;diff=3804"/>
				<updated>2007-09-30T17:26:47Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial14.jpg&amp;diff=3803</id>
		<title>File:Magnifying glass tutorial14.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial14.jpg&amp;diff=3803"/>
				<updated>2007-09-30T17:26:37Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial12.jpg&amp;diff=3802</id>
		<title>File:Magnifying glass tutorial12.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial12.jpg&amp;diff=3802"/>
				<updated>2007-09-30T17:26:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial11.jpg&amp;diff=3801</id>
		<title>File:Magnifying glass tutorial11.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial11.jpg&amp;diff=3801"/>
				<updated>2007-09-30T17:26:18Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial9.jpg&amp;diff=3800</id>
		<title>File:Magnifying glass tutorial9.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial9.jpg&amp;diff=3800"/>
				<updated>2007-09-30T17:26:07Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial8.jpg&amp;diff=3799</id>
		<title>File:Magnifying glass tutorial8.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial8.jpg&amp;diff=3799"/>
				<updated>2007-09-30T17:25:57Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial7.jpg&amp;diff=3798</id>
		<title>File:Magnifying glass tutorial7.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial7.jpg&amp;diff=3798"/>
				<updated>2007-09-30T17:25:46Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial5.jpg&amp;diff=3797</id>
		<title>File:Magnifying glass tutorial5.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial5.jpg&amp;diff=3797"/>
				<updated>2007-09-30T17:25:34Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial4.jpg&amp;diff=3796</id>
		<title>File:Magnifying glass tutorial4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial4.jpg&amp;diff=3796"/>
				<updated>2007-09-30T17:25:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial3.jpg&amp;diff=3795</id>
		<title>File:Magnifying glass tutorial3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial3.jpg&amp;diff=3795"/>
				<updated>2007-09-30T17:25:06Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial2.jpg&amp;diff=3794</id>
		<title>File:Magnifying glass tutorial2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial2.jpg&amp;diff=3794"/>
				<updated>2007-09-30T17:24:53Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial1.jpg&amp;diff=3793</id>
		<title>File:Magnifying glass tutorial1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial1.jpg&amp;diff=3793"/>
				<updated>2007-09-30T17:24:39Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial_4.png&amp;diff=3790</id>
		<title>File:Magnifying glass tutorial 4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifying_glass_tutorial_4.png&amp;diff=3790"/>
				<updated>2007-09-30T16:55:45Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3789</id>
		<title>Tutorials</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3789"/>
				<updated>2007-09-30T15:02:31Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an index of all of the tutorials for Synfig Studio.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|'''Tutorial Name'''||'''Description'''&lt;br /&gt;
|-&lt;br /&gt;
| [[Getting Started]] [[http://www.synfig.com/synfig_tutorial.pdf PDF]] || New to Synfig Studio? This tutorial will help you get the gist of things&lt;br /&gt;
|-&lt;br /&gt;
| [[Animation Basics]] || Introduction to making things move, the timeline, and the keyframe dialog.&lt;br /&gt;
|-&lt;br /&gt;
| [[Adding Layers]] || Introduction to the Layers palette, and basics of compositing.&lt;br /&gt;
|-&lt;br /&gt;
| [[Creating Shapes]] || Introduction to making shapes using the bline and normal tools.&lt;br /&gt;
|-&lt;br /&gt;
| [[How do I|How do I...?]] || Quickie tutorials, and commonly-needed tasks.&lt;br /&gt;
|-&lt;br /&gt;
| [[PictureTutorial|Timonator's newbie tutorial with pictures!]] || a WIP tutorial with lots of screenshots.&lt;br /&gt;
|-&lt;br /&gt;
| [[Flower Animation]] || A beginner tutorial, showing animation with blines. It could be a good tutorial to follow, after the Animations Basics one.&lt;br /&gt;
|-&lt;br /&gt;
| [[Following a BLine]] || A tutorial showing how to make a layer follow a BLine rotating to face the direction it's moving in&lt;br /&gt;
|-&lt;br /&gt;
| [[Building a magnifying glass]] [[http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf PDF]] || A tutorial showing how to build a magnifying glass.&lt;br /&gt;
|-&lt;br /&gt;
| [[Walk Cycle]] || Tutorial showing import of multiple still frames, and rotoscoping to generate a walk cycle animation&lt;br /&gt;
|-&lt;br /&gt;
| [[Reuse Animations]] || Tutorial that explains how to reuse &amp;quot;poses&amp;quot; of portions of the scene without interfere on the rest of it&lt;br /&gt;
|-&lt;br /&gt;
| [[Building a magnifying glass(new)]] [[http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf PDF]] || A tutorial showing how to build a magnifying glass.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Keyboard Shortcuts]]&lt;br /&gt;
&lt;br /&gt;
General animation tutorial links:&lt;br /&gt;
&lt;br /&gt;
[http://www.keithlango.com/tutorials/old/popThru/popThru.html Keith Largo Tutes]&lt;br /&gt;
&lt;br /&gt;
[http://www.animationarchive.org/2006/05/meta-100000-animation-drawing-course.html The Animation Drawing Course at The Animation Archive] &lt;br /&gt;
&lt;br /&gt;
[http://www.garycmartin.com/mouth_shapes.html Lip Sync]&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Doc:Building_a_magnifying_glass&amp;diff=3659</id>
		<title>Doc:Building a magnifying glass</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Doc:Building_a_magnifying_glass&amp;diff=3659"/>
				<updated>2007-09-26T14:31:06Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: New page: Only available as pdf at the moment. here: http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf synfig file: http://www.musikboden.se/synfigfiles/magnifying_glass_tutorial.zi...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Only available as pdf at the moment. here: http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf&lt;br /&gt;
synfig file: http://www.musikboden.se/synfigfiles/magnifying_glass_tutorial.zip&lt;br /&gt;
rendered movie at youtube: http://www.youtube.com/watch?v=2qq3xxUSscE&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3658</id>
		<title>Tutorials</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=Tutorials&amp;diff=3658"/>
				<updated>2007-09-26T14:27:55Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an index of all of the tutorials for Synfig Studio.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;80%&amp;quot;&lt;br /&gt;
|'''Tutorial Name'''||'''Description'''&lt;br /&gt;
|-&lt;br /&gt;
| [[Getting Started]] [[http://www.synfig.com/synfig_tutorial.pdf PDF]] || New to Synfig Studio? This tutorial will help you get the gist of things&lt;br /&gt;
|-&lt;br /&gt;
| [[Animation Basics]] || Introduction to making things move, the timeline, and the keyframe dialog.&lt;br /&gt;
|-&lt;br /&gt;
| [[Adding Layers]] || Introduction to the Layers palette, and basics of compositing.&lt;br /&gt;
|-&lt;br /&gt;
| [[Creating Shapes]] || Introduction to making shapes using the bline and normal tools.&lt;br /&gt;
|-&lt;br /&gt;
| [[How do I|How do I...?]] || Quickie tutorials, and commonly-needed tasks.&lt;br /&gt;
|-&lt;br /&gt;
| [[PictureTutorial|Timonator's newbie tutorial with pictures!]] || a WIP tutorial with lots of screenshots.&lt;br /&gt;
|-&lt;br /&gt;
| [[Flower Animation]] || A beginner tutorial, showing animation with blines. It could be a good tutorial to follow, after the Animations Basics one.&lt;br /&gt;
|-&lt;br /&gt;
| [[Following a BLine]] || A tutorial showing how to make a layer follow a BLine rotating to face the direction it's moving in&lt;br /&gt;
|-&lt;br /&gt;
| [[Building a magnifying glass]] [[http://www.musikboden.se/synfigfiles/tutorial_magnifying_glass.pdf PDF]] || A tutorial showing how to build a magnifying glass.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[Keyboard Shortcuts]]&lt;br /&gt;
&lt;br /&gt;
General animation tutorial links:&lt;br /&gt;
&lt;br /&gt;
[http://www.keithlango.com/tutorials/old/popThru/popThru.html Keith Largo Tutes]&lt;br /&gt;
&lt;br /&gt;
[http://www.animationarchive.org/2006/05/meta-100000-animation-drawing-course.html The Animation Drawing Course at The Animation Archive] &lt;br /&gt;
&lt;br /&gt;
[http://www.garycmartin.com/mouth_shapes.html Lip Sync]&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User_talk:Genete&amp;diff=3633</id>
		<title>User talk:Genete</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User_talk:Genete&amp;diff=3633"/>
				<updated>2007-09-24T20:20:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Always walking?  &lt;br /&gt;
&lt;br /&gt;
http://genetita.googlepages.com/avatar.gif/avatar-full.jpg I found him taking a rest!  :)  [[User:Dooglus|dooglus]] 15:35, 24 September 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
: http://www.ojodigital.com/foro/images/smilies/laugh.gif &lt;br /&gt;
: You got me trapped! you know now my secret!!! http://www.ojodigital.com/foro/images/smilies/wink.gif... So you finally visited my Anime Studio web page... Ha ha ha... I'm a fan of Anime Studio also... But synfig is much better!!!!  (I hope my friends from AS forum don't head this) ... I love Synfig!!... I only miss bones on it... http://www.ojodigital.com/foro/images/smilies/frown.gif. --[[User:Genete|Genete]] 16:00, 24 September 2007 (EDT)&lt;br /&gt;
I heard that Genete!! / Ulrik&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User_talk:Genete&amp;diff=3632</id>
		<title>User talk:Genete</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User_talk:Genete&amp;diff=3632"/>
				<updated>2007-09-24T20:19:31Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Always walking?  &lt;br /&gt;
&lt;br /&gt;
http://genetita.googlepages.com/avatar.gif/avatar-full.jpg I found him taking a rest!  :)  [[User:Dooglus|dooglus]] 15:35, 24 September 2007 (EDT)&lt;br /&gt;
&lt;br /&gt;
: http://www.ojodigital.com/foro/images/smilies/laugh.gif &lt;br /&gt;
: You got me trapped! you know now my secret!!! http://www.ojodigital.com/foro/images/smilies/wink.gif... So you finally visited my Anime Studio web page... Ha ha ha... I'm a fan of Anime Studio also... But synfig is much better!!!!  (I hope my friends from AS forum don't head this) ... I love Synfig!!... I only miss bones on it... http://www.ojodigital.com/foro/images/smilies/frown.gif. --[[User:Genete|Genete]] 16:00, 24 September 2007 (EDT)&lt;br /&gt;
I heard that Genete!!&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3563</id>
		<title>User:Ulrik</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3563"/>
				<updated>2007-09-22T14:00:42Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Magnifiedulrik.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'm an amatuer animator very interested in Synfig.&lt;br /&gt;
http://www.musikboden.se&lt;br /&gt;
at youtube: http://www.youtube.com/profile?user=ullebulle&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3562</id>
		<title>User:Ulrik</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3562"/>
				<updated>2007-09-22T13:56:50Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Magnifiedulrik.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'm an amatuer animator very interested in Synfig.&lt;br /&gt;
http://www.musikboden.se&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=People&amp;diff=3561</id>
		<title>People</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=People&amp;diff=3561"/>
				<updated>2007-09-22T13:44:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If I've missed anyone - it's a wiki - you know what to do!&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
| http://www.museumca.org/satelite/images/pabs.jpg&lt;br /&gt;
| [[Image:Dooglus.png]]&lt;br /&gt;
| http://openclipart.org/people/johnny_automatic/johnny_automatic_toy_robot.png&lt;br /&gt;
|-&lt;br /&gt;
| [[User:PaulWise | pabs3]]&lt;br /&gt;
| [[User: dooglus | dooglus]]&lt;br /&gt;
| [[FAQ#Why_doesn.27t_dyloxin_talk_on_the_Synfig_IRC_channel.5D.3F |dyloxin]]&lt;br /&gt;
|-&lt;br /&gt;
| http://home.comcast.net/~pxegeek/synfig/pxegeek.png&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[User:pxegeek|PXEGeek]]&lt;br /&gt;
| KiBi&lt;br /&gt;
| Rore&lt;br /&gt;
|-&lt;br /&gt;
| [[Image:Magnifiedulrik.png]]&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Ulrik|Ulrikboden]]&lt;br /&gt;
| scutato&lt;br /&gt;
| [[User:Zelig|Zelig]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
| &amp;lt;picture&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| [[User:Genete|Genete]]&lt;br /&gt;
| &amp;lt;your name here?&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Also semi-frequent visitors - [[User:Madsen|Madsen]], [[User:Bombe |Bombe]], TMM, Tokyo, Zipola, [[User:zotz|zotz]], [[User:Omry|Omry]], [[User:Riggzy|Riggzy]]&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3560</id>
		<title>User:Ulrik</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3560"/>
				<updated>2007-09-22T13:38:49Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Magnifiedulrik.png]]&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I'm an amatuer animator very interested in Synfig.&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=File:Magnifiedulrik.png&amp;diff=3559</id>
		<title>File:Magnifiedulrik.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=File:Magnifiedulrik.png&amp;diff=3559"/>
				<updated>2007-09-22T13:36:43Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: picture of ulrik&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;picture of ulrik&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	<entry>
		<id>https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3558</id>
		<title>User:Ulrik</title>
		<link rel="alternate" type="text/html" href="https://wiki.synfig.org/index.php?title=User:Ulrik&amp;diff=3558"/>
				<updated>2007-09-22T13:33:19Z</updated>
		
		<summary type="html">&lt;p&gt;Ulrik: New page: Image:Magnifiedulrik.png Ulrik I'm an amatuer animator very interested in Synfig.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Magnifiedulrik.png]]&lt;br /&gt;
Ulrik&lt;br /&gt;
I'm an amatuer animator very interested in Synfig.&lt;/div&gt;</summary>
		<author><name>Ulrik</name></author>	</entry>

	</feed>