API Overview¶
Pixelle-Video Python API reference documentation.
Core Classes¶
PixelleVideoCore¶
Main service class providing video generation functionality.
from pixelle_video.service import PixelleVideoCore
pixelle = PixelleVideoCore()
await pixelle.initialize()
Main Methods¶
generate_video()¶
Primary method for generating videos.
Parameters:
text(str): Topic or complete scriptmode(str): Generation mode ("generate" or "fixed")n_scenes(int): Number of scenestitle(str, optional): Video titletts_workflow(str): TTS workflowimage_workflow(str): Image generation workflowframe_template(str): Video templatebgm_path(str, optional): BGM file path
Returns: VideoResult object
Examples¶
Check the examples/ directory for more examples.
More Information¶
Detailed API documentation coming soon.