feat(api-nodes): add WAN2.6 ReferenceToVideo (#11644)

This commit is contained in:
Alexander Piskun
2026-01-07 08:04:50 +02:00
committed by GitHub
parent ce0000c4f2
commit 79e94544bd
2 changed files with 161 additions and 1 deletions

View File

@@ -119,7 +119,7 @@ async def upload_video_to_comfyapi(
raise ValueError(f"Could not verify video duration from source: {e}") from e
upload_mime_type = f"video/{container.value.lower()}"
filename = f"uploaded_video.{container.value.lower()}"
filename = f"{uuid.uuid4()}.{container.value.lower()}"
# Convert VideoInput to BytesIO using specified container/codec
video_bytes_io = BytesIO()