Add CopyCodecArgument

This commit is contained in:
Rafael Carvalho 2023-05-17 11:40:20 +12:00
parent 97b9fa6db9
commit 69b01c91c6

View file

@ -0,0 +1,10 @@
namespace FFMpegCore.Arguments
{
/// <summary>
/// Represents a copy codec parameter
/// </summary>
public class CopyCodecArgument : IArgument
{
public string Text => $"-codec copy";
}
}