Goanimate — Wrapper 2.0.0
npm install puppeteer project.render_mp4( output_path="video.mp4", headless=True, quality="high", watermark=False ) Rendering uses headless Chrome to load a local Vyond-like player and record canvas frames. frames = project.render_frames(start=0, end=10.0, fps=24) # frames is list of PIL Images 7. API Reference (Selected) | Class | Method | Description | |--------------|--------------------------------------|--------------------------------------| | Project | add_scene(scene) | Append scene to timeline | | Project | render_mp4(path) | Render final video | | Scene | add_dialog(char, text, start, end) | Add speech bubble + lipsync | | Character | set_expression(expr) | Change facial expression | | Character | walk_to(x, y, duration) | Auto-walk with tweening | | Prop | fade_in(duration) | Opacity animation |
scene2 = Scene(8.0, "chart_background") chart = Prop("bar_chart_growth", position=(400,300)) scene2.add_prop(chart) scene2.add_dialog(jane, "We grew 20% this quarter.", start=0, end=3) scene2.camera.zoom(1.8, duration=2.0) project.add_scene(scene2)
char = Character( id=str, # unique per scene style="business_female"|"casual_male"|etc, position=(x, y), # screen percentage or px scale=1.0, facing="left"|"right" ) char.set_expression("happy"|"sad"|"angry"|"surprised") char.set_pose("standing"|"sitting"|"walking") char.look_at(target_x, target_y) 4.4 Actions & Timeline Events Actions are timed behaviors. goanimate wrapper 2.0.0
project.render_mp4("sales_pitch.mp4")
scene = Scene( duration=float, # seconds background=str|dict, # asset id or color music=str, # background audio asset id transition="fade"|"cut"|"wipe" ) Represents a Vyond character with rigging. npm install puppeteer project
project = Project( title=str, fps=int (default 24), resolution=(width, height), theme="light"|"dark" ) A continuous timeline segment.
Full reference: https://goanimate-wrapper.readthedocs.io After installation: project
This guide provides a full blueprint for building and using a GoAnimate-style wrapper. Adapt the asset IDs, TTS engine, and rendering backend to your actual target platform.