Skip to content

Commit 02a8173

Browse files
committed
fix(lib): reversed video quality
1 parent 07dff32 commit 02a8173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manim_slides/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def reverse_video_file(src: Path, dest: Path) -> None:
8888

8989
for _ in range(frames_count):
9090
frame = graph.pull()
91-
frame.pict_type = 1 # Otherwise we get a warning saying it is changed
91+
frame.pict_type = 5 # Otherwise we get a warning saying it is changed
9292
output.mux(output_stream.encode(frame))
9393

9494
for packet in output_stream.encode():

0 commit comments

Comments
 (0)