Skip to content

Commit 5661789

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 201f977 commit 5661789

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

manim/scene/scene_file_writer.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,8 +792,12 @@ def combine_to_movie(self) -> None:
792792
output_container = av.open(
793793
str(temp_file_path), mode="w", options=av_options
794794
)
795-
output_video_stream = output_container.add_stream_from_template(template=video_stream)
796-
output_audio_stream = output_container.add_stream_from_template(template=audio_stream)
795+
output_video_stream = output_container.add_stream_from_template(
796+
template=video_stream
797+
)
798+
output_audio_stream = output_container.add_stream_from_template(
799+
template=audio_stream
800+
)
797801

798802
for packet in video_input.demux(video_stream):
799803
# We need to skip the "flushing" packets that `demux` generates.

0 commit comments

Comments
 (0)