Skip to content

Commit

Permalink
Fix typo in video metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle authored and galenlynch committed Dec 14, 2024
1 parent a7d7c16 commit 834c33b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/aind_behavior_video_transformation/transform_videos.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class FfmpegOutputArgs(Enum):
"format=yuv420p10le,colorspace=ispace=bt709:all=bt709:dither=none,"
'scale=out_range=tv:sws_dither=none,format=yuv420p" -c:v libx264 '
"-preset veryslow -crf 18 -pix_fmt yuv420p "
'-metadata author="Allen Institute for Neural Dyamics" '
'-metadata author="Allen Institute for Neural Dynamics" '
"-movflags +faststart+write_colr"
)

Expand All @@ -71,14 +71,14 @@ class FfmpegOutputArgs(Enum):
"format=yuv420p10le,colorspace=ispace=bt709:all=bt709:dither=none,"
'scale=out_range=tv:sws_dither=none,format=yuv420p" -c:v libx264 '
"-preset veryslow -crf 18 -pix_fmt yuv420p "
'-metadata author="Allen Institute for Neural Dyamics" '
'-metadata author="Allen Institute for Neural Dynamics" '
"-movflags +faststart+write_colr"
)
NO_GAMMA_ENCODING = (
"-vf "
'"scale=out_range=tv:sws_dither=none,format=yuv420p" -c:v libx264 '
"-preset veryslow -crf 18 -pix_fmt yuv420p "
'-metadata author="Allen Institute for Neural Dyamics" '
'-metadata author="Allen Institute for Neural Dynamics" '
"-movflags +faststart+write_colr"
)
NONE = ""
Expand Down

0 comments on commit 834c33b

Please sign in to comment.