| import re
|
| from dataclasses import dataclass
|
| from typing import List, Optional
|
|
|
|
|
| @dataclass
|
| class PromptSection:
|
| """Represents a section of the prompt with specific timing information"""
|
| prompt: str
|
| start_time: float = 0
|
| end_time: Optional[float] = None
|
|
|
|
|
| def snap_to_section_boundaries(prompt_sections: List[PromptSection], latent_window_size: int, fps: int = 30) -> List[PromptSection]:
|
| """
|
| Adjust timestamps to align with model's internal section boundaries
|
|
|
| Args:
|
| prompt_sections: List of PromptSection objects
|
| latent_window_size: Size of the latent window used in the model
|
| fps: Frames per second (default: 30)
|
|
|
| Returns:
|
| List of PromptSection objects with aligned timestamps
|
| """
|
| section_duration = (latent_window_size * 4 - 3) / fps
|
|
|
| aligned_sections = []
|
| for section in prompt_sections:
|
|
|
| aligned_start = round(section.start_time / section_duration) * section_duration
|
|
|
|
|
| aligned_end = None
|
| if section.end_time is not None:
|
| aligned_end = round(section.end_time / section_duration) * section_duration
|
|
|
|
|
| if aligned_end is not None and aligned_end <= aligned_start:
|
| aligned_end = aligned_start + section_duration
|
|
|
| aligned_sections.append(PromptSection(
|
| prompt=section.prompt,
|
| start_time=aligned_start,
|
| end_time=aligned_end
|
| ))
|
|
|
| return aligned_sections
|
|
|
|
|
| def parse_timestamped_prompt(prompt_text: str, total_duration: float, latent_window_size: int = 9, generation_type: str = "Original") -> List[PromptSection]:
|
| """
|
| Parse a prompt with timestamps in the format [0s-2s: text] or [3s: text]
|
|
|
| Args:
|
| prompt_text: The input prompt text with optional timestamp sections
|
| total_duration: Total duration of the video in seconds
|
| latent_window_size: Size of the latent window used in the model
|
| generation_type: Type of generation ("Original" or "F1")
|
|
|
| Returns:
|
| List of PromptSection objects with timestamps aligned to section boundaries
|
| and reversed to account for reverse generation (only for Original type)
|
| """
|
|
|
| if "[" not in prompt_text or "]" not in prompt_text:
|
| return [PromptSection(prompt=prompt_text.strip())]
|
|
|
| sections = []
|
|
|
| timestamp_pattern = r'\[(\d+(?:\.\d+)?s)(?:-(\d+(?:\.\d+)?s))?\s*:\s*(.*?)\]'
|
| regular_text = prompt_text
|
|
|
| for match in re.finditer(timestamp_pattern, prompt_text):
|
| start_time_str = match.group(1)
|
| end_time_str = match.group(2)
|
| section_text = match.group(3).strip()
|
|
|
|
|
| start_time = float(start_time_str.rstrip('s'))
|
| end_time = float(end_time_str.rstrip('s')) if end_time_str else None
|
|
|
| sections.append(PromptSection(
|
| prompt=section_text,
|
| start_time=start_time,
|
| end_time=end_time
|
| ))
|
|
|
|
|
| regular_text = regular_text.replace(match.group(0), "")
|
|
|
|
|
| regular_text = regular_text.strip()
|
| if regular_text:
|
| sections.append(PromptSection(
|
| prompt=regular_text,
|
| start_time=0,
|
| end_time=None
|
| ))
|
|
|
|
|
| sections.sort(key=lambda x: x.start_time)
|
|
|
|
|
| for i in range(len(sections) - 1):
|
| if sections[i].end_time is None:
|
| sections[i].end_time = sections[i+1].start_time
|
|
|
|
|
| if sections and sections[-1].end_time is None:
|
| sections[-1].end_time = total_duration
|
|
|
|
|
| sections = snap_to_section_boundaries(sections, latent_window_size)
|
|
|
|
|
| if generation_type in ("Original", "Original with Endframe", "Video"):
|
|
|
| reversed_sections = []
|
| for section in sections:
|
| reversed_start = total_duration - section.end_time if section.end_time is not None else 0
|
| reversed_end = total_duration - section.start_time
|
| reversed_sections.append(PromptSection(
|
| prompt=section.prompt,
|
| start_time=reversed_start,
|
| end_time=reversed_end
|
| ))
|
|
|
|
|
| reversed_sections.sort(key=lambda x: x.start_time)
|
| return reversed_sections
|
|
|
| return sections
|
|
|
|
|
| def get_section_boundaries(latent_window_size: int = 9, count: int = 10) -> str:
|
| """
|
| Calculate and format section boundaries for UI display
|
|
|
| Args:
|
| latent_window_size: Size of the latent window used in the model
|
| count: Number of boundaries to display
|
|
|
| Returns:
|
| Formatted string of section boundaries
|
| """
|
| section_duration = (latent_window_size * 4 - 3) / 30
|
| return ", ".join([f"{i*section_duration:.1f}s" for i in range(count)])
|
|
|
|
|
| def get_quick_prompts() -> List[List[str]]:
|
| """
|
| Get a list of example timestamped prompts
|
|
|
| Returns:
|
| List of example prompts formatted for Gradio Dataset
|
| """
|
| prompts = [
|
| '[0s: The person waves hello] [2s: The person jumps up and down] [4s: The person does a spin]',
|
| '[0s: The person raises both arms slowly] [2s: The person claps hands enthusiastically]',
|
| '[0s: Person gives thumbs up] [1.1s: Person smiles and winks] [2.2s: Person shows two thumbs down]',
|
| '[0s: Person looks surprised] [1.1s: Person raises arms above head] [2.2s-3.3s: Person puts hands on hips]'
|
| ]
|
| return [[x] for x in prompts]
|
|
|