AnimationClipFromVideoStatus
Indicates the current status or final outcome of a video-to-animation conversion started by AssetService:PromptImportAnimationClipFromVideoAsync().
Items 12
| History | Name | Value | Description | |
|---|---|---|---|---|
| 594 | Initializing | 0 | The video-to-animation job is being set up on the server. | |
| 594 | Pending | 1 | The job has been queued on the server and is waiting for processing resources to become available. | |
| 594 | Processing | 2 | The server is actively analyzing the video and extracting motion-capture data to generate the animation clip. | |
| 594 | ErrorGeneric | 4 | The server-side video processing encountered an unspecified error. | |
| 594 | Success | 6 | The video was successfully converted into an AnimationClip, which is returned as the second element of the result tuple. | |
| 594 | ErrorVideoTooLong | 7 | Processing failed because the uploaded video exceeds the maximum allowed duration (15 seconds). | |
| 594 | ErrorNoPersonDetected | 8 | Processing failed because no person could be detected in the video; the video must show a person fully in frame, facing the camera. | |
| 594 | ErrorVideoUnstable | 9 | Processing failed because the video is too shaky for reliable motion capture; a more stable recording is required. | |
| 594 | Timeout | 10 | Processing could not be completed in time, typically due to high request volume on the video processing backend. | |
| 594 | Cancelled | 11 | The player declined the consent prompt or provided no input, so the video upload was not started. | |
| 594 | ErrorMultiplePeople | 12 | Processing failed because more than one person was detected in the video; the video must contain a single person fully in frame. | |
| 594 | ErrorUploadingVideo | 2001 | The client-side video upload failed before the video reached the processing backend. |
Description
Describes the status of a video-to-animation conversion initiated by
AssetService:PromptImportAnimationClipFromVideoAsync(). Values in this
enum are reported both as progress updates through the method's
progressCallback and as the final outcome in the returned tuple.
History 13
- 594 Add Timeout
- 594 Add Success
- 594 Add Processing
- 594 Add Pending
- 594 Add Initializing
- 594 Add ErrorVideoUnstable
- 594 Add ErrorVideoTooLong
- 594 Add ErrorUploadingVideo
- 594 Add ErrorNoPersonDetected
- 594 Add ErrorMultiplePeople
- 594 Add ErrorGeneric
- 594 Add Cancelled
- 594 Add AnimationClipFromVideoStatus