|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 |
|
| 5 | +## [0.5.9] |
| 6 | + |
| 7 | +### Added |
| 8 | + |
| 9 | +- **`ISettings`** now includes: |
| 10 | + - `syncMode: Optional[str]` |
| 11 | + - `mode: Optional[str]` |
| 12 | + - `emotion: Optional[str]` |
| 13 | + - `activeSpeakerDetection: Optional[Union[IActiveSpeakerDetection, Dict[str, Any]]]` |
| 14 | + - `occlusionDetection: Optional[bool]` |
| 15 | + - `segments: Optional[List[Union[ISegment, Dict[str, Any]]]]` |
| 16 | + - `tts: Optional[Union[ITTSSettings, Dict[str, Any]]]` |
| 17 | + - `colorCorrection: Optional[bool]` |
| 18 | + - `renderingSpeed: Optional[str]` |
| 19 | + - `magicPrompt: Optional[str]` |
| 20 | + - `background: Optional[str]` |
| 21 | +- Added **`IActiveSpeakerDetection`** (`autoDetect`, `frameNumber`, `coordinates`, `boundingBoxes`) with validation for `boundingBoxes` entries (must be `null` or four numeric values). |
| 22 | +- Added **`ISegment`** for Sync segments (`startTime`, `endTime`, `audio`, `ref`, `audioStartTime`, `audioEndTime`). |
| 23 | +- Added **`ITTSSettings`** for Sync TTS tuning (`stability`, `similarityBoost`). |
| 24 | +- Added compatibility aliases: |
| 25 | + - `ISyncSegment = ISegment` |
| 26 | + - `ISyncActiveSpeakerDetection = IActiveSpeakerDetection` |
| 27 | + - `ISyncSettings = ISyncProviderSettings` |
| 28 | +- **`IAudioSpeech`** now includes: |
| 29 | + - `voices: Optional[List[Union[IAudioVoice, Dict[str, Any]]]]` |
| 30 | +- Added **`IAudioVoice`** for multi-speaker TTS mapping: |
| 31 | + - `speaker: str` |
| 32 | + - `voice: str` |
| 33 | +- **`IImageInference`** now includes: |
| 34 | + - `upscaleFactor: Optional[float]` |
| 35 | + |
| 36 | +### Changed |
| 37 | + |
| 38 | +- Updated **`ISyncProviderSettings`** to include Sync 3 fields: |
| 39 | + - `mode: Optional[str]` |
| 40 | + - `emotion: Optional[str]` |
| 41 | + - `activeSpeakerDetection: Optional[Union[IActiveSpeakerDetection, Dict[str, Any], bool]]` |
| 42 | + - `occlusionDetection: Optional[bool]` |
| 43 | + - `segments: Optional[List[Union[ISegment, Dict[str, Any]]]]` |
| 44 | +- Added post-init normalization for Sync settings so dict inputs are coerced into **`IActiveSpeakerDetection`**, **`ISegment`**, and **`ITTSSettings`** objects. |
| 45 | + |
5 | 46 | ## [0.5.8] |
6 | 47 |
|
7 | 48 | ### Added |
|
0 commit comments