Skip to content

Commit

Permalink
fix(lib): reversed video quality
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans committed Jan 19, 2024
1 parent 07dff32 commit 02a8173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim_slides/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def reverse_video_file(src: Path, dest: Path) -> None:

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

for packet in output_stream.encode():
Expand Down

0 comments on commit 02a8173

Please sign in to comment.