Timeline Studio API Documentation - v0.26.0
    Preparing search index...
    • Создает подробный контекст Timeline для AI инструментов

      Parameters

      • project: any
      • OptionalactiveSection: any
      • OptionalselectedClips: TimelineClip[]

      Returns
          | {
              activeSection: any;
              hasProject: boolean;
              projectDescription?: undefined;
              projectName: any;
              projectSettings?: undefined;
              projectStats: any;
              selectedClips: any[];
          }
          | {
              activeSection: { duration: any; name: any; trackCount: any };
              hasProject: boolean;
              projectDescription: any;
              projectName: any;
              projectSettings: { aspectRatio: any; fps: any; resolution: any };
              projectStats: {
                  clipCount: number;
                  effectCount: number;
                  sectionCount: any;
                  totalDuration: number;
                  trackCount: number;
                  transitionCount: number;
              };
              selectedClips: {
                  duration: number;
                  effectCount: any;
                  hasTransitions: boolean;
                  name: any;
              }[];
          }