SYMBOL INDEX (40 symbols across 5 files) FILE: draft/__init__.py class Draft (line 8) | class Draft: method __init__ (line 15) | def __init__(self, name:str="Test"): method _medai_tpye (line 42) | def _medai_tpye(self,media): method add_media_to_materials (line 53) | def add_media_to_materials(self,file): method _content_material (line 73) | def _content_material(self,material:Material): method add_media_to_track (line 95) | def add_media_to_track(self,media,start=0,duration=0,index=0): method save (line 130) | def save(self): FILE: draft/material.py class Material (line 5) | class Material: method __init__ (line 12) | def __init__(self, file) -> None: method data (line 43) | def data(self): method data (line 53) | def data(self, value): method to_material (line 56) | def to_material(self,file_path): method load_material (line 70) | def load_material(self,material): method video (line 82) | def video(self): method audio (line 93) | def audio(self): method text (line 102) | def text(self): method change_color (line 106) | def change_color(self,hex): FILE: draft/template.py function canvase (line 4) | def canvase(): function sound_channel_mapping (line 18) | def sound_channel_mapping(): function speed (line 26) | def speed(): function video (line 35) | def video(): function material (line 102) | def material(): function track (line 120) | def track(): function segment (line 129) | def segment(): function beat (line 169) | def beat(): function audio (line 187) | def audio(): function text (line 218) | def text(): function material_animation (line 294) | def material_animation(): FILE: draft/track.py class Tracks (line 3) | class Tracks: method __init__ (line 5) | def __init__(self) -> None: method add_video_track (line 15) | def add_video_track(self,track_index=0): method add_audio_track (line 30) | def add_audio_track(self,track_index=0): method add_text_track (line 39) | def add_text_track(self,track_index=0): method _add_track (line 48) | def _add_track(self,tracks,track_type,track_index): method to_track (line 59) | def to_track(self,metetype,segment,track_index): method _composite (line 67) | def _composite(self): FILE: draft/util.py function generate_id (line 6) | def generate_id(): function write_json (line 12) | def write_json(path,data): function read_json (line 16) | def read_json(path): function new_folder (line 20) | def new_folder(folder_path):