mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
9 lines
196 B
C#
9 lines
196 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
/// <summary>
|
|
/// Remove metadata argument
|
|
/// </summary>
|
|
public class RemoveMetadataArgument : IArgument
|
|
{
|
|
public string Text => "-map_metadata -1";
|
|
}
|