Skip to content

Commit

Permalink
Merge pull request #45 from AllenNeuralDynamics/hotfix-ffmpeg-default…
Browse files Browse the repository at this point in the history
…-string
  • Loading branch information
bruno-f-cruz authored Jun 27, 2024
2 parents f557983 + ca490ff commit 4a44428
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DataSchemas/aind_behavior_services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.7.10"
__version__ = "0.7.11"

from .rig import AindBehaviorRigModel # noqa: F401
from .session import AindBehaviorSessionModel # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion src/DataSchemas/aind_behavior_services/rig/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VideoWriterFfmpeg(BaseModel):
frame_rate: int = Field(default=30, ge=0, description="Encoding frame rate")
container_extension: str = Field(default="mp4", description="Container extension")
output_arguments: str = Field(
default="c:v hevc_nvenc -pix_fmt x2rgb10le -color_range full -tune hq -preset p3 -rc vbr -cq 16 -rc-lookahead 56 -temporal-aq 1 -qmin 0 -qmax 10", # noqa E501
default="-c:v hevc_nvenc -pix_fmt x2rgb10le -color_range full -tune hq -preset p3 -rc vbr -cq 16 -rc-lookahead 56 -temporal-aq 1 -qmin 0 -qmax 10", # noqa E501
description="Output arguments",
)

Expand Down

0 comments on commit 4a44428

Please sign in to comment.