Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.4.0 #43

Merged
merged 15 commits into from
Jan 8, 2025
Prev Previous commit
Next Next commit
Update vidlib.py
GeekLogan committed Dec 4, 2024
commit 9b27afe47921ad60c78dea8193154146b93b488b
2 changes: 2 additions & 0 deletions src/pySISF/vidlib.py
Original file line number Diff line number Diff line change
@@ -87,6 +87,8 @@ def encode_stack(input_stack, method=EncoderType.X264, debug=False, fps=24, comp
ffmpeg_command.append("-vcodec")
ffmpeg_command.append("libaom-av1")
case EncoderType.AV1_SVT:
ffmpeg_command.append("-rc")
ffmpeg_command.append("0")
ffmpeg_command.append("-vcodec")
ffmpeg_command.append("libsvtav1")
case _: