Updates/improvements: I stick with the latest stable release, which is currently v1.4.5. Releases ā Synfig. But, I occasionally play around with things in the unstable/dev releases.
Regarding the command-line interface: Thereās a wiki page for this, here: Render options - Synfig Animation Studio. Iāll put a few examples below, but Iāll refrain from overdoing it because it would be better if we started another thread in a different, and more appropriate, forum category.
You can get CLI help from the built-in help menus. Navigate to your Synfig bin folder and run this command to see the full help menu.
.\synfig.exe --help-all
Output:
There are additional help menus for some particular things, like ātarget-video-codecsā. Type this command to see information about target video codecs.
.\synfig.exe --target-video-codecs
When I render things, I call synfig.exe from Windows PowerShell, For readability, I set the CLI options in variables, and it looks like this:
$resolutionScale = 1
$h = 1080*$resolutionScale
$w = 1920*$resolutionScale
$br = 6000
$startFrame = 0
$endFrame = 120
$srcFile = "{path_to_your_SIFZ_file}\{MyFile.sifz}"
$destFile= "{path_to_your_output_folder}\{MyRender.avi}"
.\synfig.exe -i $srcFile -o $destFile -w $w -h $h --dpi-x 1200 --dpi-y 1200 -T 32 -a 1 --video-codec libx264-lossless --video-bitrate $br --start-time $startFrame --end-time $endFrame
Adobe Animate: I tried Adobe animate for a couple weeks. It seemed like decent software, and had lots of features, but some of the basic features that I require were going to require an additional subscription for After Effects. At that point, I realized that the best possible outcome if I were to continue w/Adobe would be a vague approximation of what Synfig already is. Also, I would eventually become dependent upon Adobe, and be at the mercy of their whims regarding pricing. I just couldnāt do it. Long term, I wouldāve been trapped because the switching costs to another platform would rise with time, and ultimately become prohibitive. Essentially, Iād be a prisoner to Adobe until the end of time . And thatās assuming everything went well. Thereās also the possibility that certain features, modules, and/or entire products would get discontinued if they ever became unprofitable.