From 85467309e9ff5f40cb202a272c34a21a53130f2b Mon Sep 17 00:00:00 2001 From: bjhardcastle Date: Fri, 13 Dec 2024 18:13:00 -0800 Subject: [PATCH] Fix typo in video metadata --- src/aind_behavior_video_transformation/transform_videos.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aind_behavior_video_transformation/transform_videos.py b/src/aind_behavior_video_transformation/transform_videos.py index 611d917..c616b8f 100644 --- a/src/aind_behavior_video_transformation/transform_videos.py +++ b/src/aind_behavior_video_transformation/transform_videos.py @@ -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" ) @@ -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 = ""