Skip to main content
Glama
builder.py1.67 kB
"""WavyText composition builder method.""" from typing import TYPE_CHECKING if TYPE_CHECKING: from ....generator.composition_builder import CompositionBuilder def add_to_composition( builder: "CompositionBuilder", start_time: float, text: str, font_size: str = "4xl", font_weight: str = "bold", text_color: str | None = None, wave_amplitude: float = 20.0, wave_speed: float = 1.0, wave_frequency: float = 0.3, position: str = "center", align: str = "center", duration: float = 3.0, ) -> "CompositionBuilder": """ Add WavyText to the composition. Returns: CompositionBuilder instance for chaining """ from ....generator.composition_builder import ComponentInstance # Calculate frames if time-based props exist start_frame = builder.seconds_to_frames(locals().get("start_time", 0.0)) duration_frames = builder.seconds_to_frames( locals().get("duration_seconds") or locals().get("duration", 3.0) ) props = { "text": text, "fontSize": font_size, "fontWeight": font_weight, "waveAmplitude": wave_amplitude, "waveSpeed": wave_speed, "waveFrequency": wave_frequency, "position": position, "align": align, "start_time": start_time, "duration": duration, } if text_color is not None: props["textColor"] = text_color component = ComponentInstance( component_type="WavyText", start_frame=start_frame, duration_frames=duration_frames, props=props, layer=0, ) builder.components.append(component) return builder

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrishayuk/chuk-mcp-remotion'

If you have feedback or need assistance with the MCP directory API, please join our Discord server