Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions runware/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2415,6 +2415,9 @@ async def _requestVideo(self, requestVideo: "IVideoInference") -> "Union[List[IV
processed_reference_videos.append(await self._process_media(item))
inputs.referenceVideos = processed_reference_videos

if inputs.video:
inputs.video = await self._process_media(inputs.video)

if inputs.frameImages:
inputs.frameImages = await self._process_media_list(
inputs.frameImages,
Expand Down
1 change: 1 addition & 0 deletions runware/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1030,6 +1030,7 @@ class ISettings(SerializableMixin):
promptExtend: Optional[bool] = None
promptUpsampling: Optional[bool] = None
preserveAudio: Optional[bool] = None
sourceAudioSync: Optional[bool] = None
quad: Optional[bool] = None
quality: Optional[str] = None
realism: Optional[bool] = None
Expand Down