Compare commits

..

1 commit

Author SHA1 Message Date
PCF
e3a930be38
Merge ef3c3140c4 into cc75e03ec9 2025-11-02 19:30:47 +00:00

View file

@ -16,7 +16,8 @@ public sealed class FFMpegGlobalArguments : FFMpegArgumentsBase
} }
/// <summary> /// <summary>
/// <inheritdoc cref="HardwareAccelerationOutputFormatArgument"/> /// <see href="https://trac.ffmpeg.org/wiki/Hardware/VAAPI#SurfaceFormats" />
/// undocumented in <see href="https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options" />
/// </summary> /// </summary>
/// <param name="device"></param> /// <param name="device"></param>
/// <returns></returns> /// <returns></returns>
@ -26,7 +27,10 @@ public sealed class FFMpegGlobalArguments : FFMpegArgumentsBase
} }
/// <summary> /// <summary>
/// <inheritdoc cref="HideBanner"/> /// <see href="https://ffmpeg.org/ffmpeg.html#Generic-options" />
/// Suppress printing banner.
/// All FFmpeg tools will normally show a copyright notice, build options and library versions.
/// This option can be used to suppress printing this information.
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
public FFMpegGlobalArguments WithHideBanner() public FFMpegGlobalArguments WithHideBanner()
@ -35,7 +39,8 @@ public sealed class FFMpegGlobalArguments : FFMpegArgumentsBase
} }
/// <summary> /// <summary>
/// <inheritdoc cref="Stats"/> /// <see href="https://ffmpeg.org/ffmpeg.html#Main-options" />
/// Explicitly disable logging of encoding progress/statistics.
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
public FFMpegGlobalArguments WithNoStats() public FFMpegGlobalArguments WithNoStats()