Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Nov 16, 2024
1 parent 9e5a7cd commit 5ebc780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AllenNeuralDynamics.Core/FfmpegVideoWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class FfmpegVideoWriter : Sink<IplImage>

[Editor(DesignTypes.MultilineStringEditor, DesignTypes.UITypeEditor)]
[Description("The optional set of command-line arguments to use for configuring the video codec.")]
public string OutputArguments { get; set; } = @"-vf ""scale=out_color_matrix=bt709:out_range=full"" -c:v h264_nvenc -pix_fmt nv12 -color_range full -colorspace bt709 -color_trc linear -tune hq -preset p4 -rc vbr -cq 12 -b:v 0M -metadata author=""Allen Institute for Neural Dynamics"" -maxrate 700M -bufsize 350M";
public string OutputArguments { get; set; } = @"-vf ""scale=out_color_matrix=bt709:out_range=full:sws_dither=none,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 Dynamics"" -movflags +faststart+write_colr";

[Editor(DesignTypes.MultilineStringEditor, DesignTypes.UITypeEditor)]
[Description("The optional set of command-line arguments to use for configuring the input video stream.")]
Expand Down

0 comments on commit 5ebc780

Please sign in to comment.