Skip to content

Commit 41e06bd

Browse files
committed
update: Video2VideoProcessor 생성 파리미터 수정*
- (결과 비디오에 대한)ffmpeg output option을 추가할 수 있도록 변경
1 parent 78362d7 commit 41e06bd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

v2v/_video2video_processor_.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def __init__(
126126
),
127127
i2v_frame_size: Optional[Tuple[int, int]] = None,
128128
i2v_fps: Optional[Union[str, float, int]] = None,
129+
dst_ffmpeg_options_output: Optional[dict] = None,
129130
) -> None:
130131
self._id = create_uuid()
131132
self._input_video_path = input_video_path
@@ -136,6 +137,7 @@ def __init__(
136137
dst_video_path=output_video_path,
137138
dst_fps=i2v_fps,
138139
dst_frame_size=i2v_frame_size,
140+
dst_ffmpeg_options_output=dst_ffmpeg_options_output,
139141
)
140142

141143
self._v2i_proc = v2ip

0 commit comments

Comments
 (0)