We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201f977 commit 5661789Copy full SHA for 5661789
manim/scene/scene_file_writer.py
@@ -792,8 +792,12 @@ def combine_to_movie(self) -> None:
792
output_container = av.open(
793
str(temp_file_path), mode="w", options=av_options
794
)
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)
+ output_video_stream = output_container.add_stream_from_template(
+ template=video_stream
797
+ )
798
+ output_audio_stream = output_container.add_stream_from_template(
799
+ template=audio_stream
800
801
802
for packet in video_input.demux(video_stream):
803
# We need to skip the "flushing" packets that `demux` generates.
0 commit comments