mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Add argument for removing metadata
This commit is contained in:
parent
b806f2bbfb
commit
e688bcc674
1 changed files with 17 additions and 0 deletions
17
FFMpegCore/FFMPEG/Argument/Atoms/RemoveMetadataArgument.cs
Normal file
17
FFMpegCore/FFMPEG/Argument/Atoms/RemoveMetadataArgument.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
namespace FFMpegCore.FFMPEG.Argument
|
||||
{
|
||||
/// <summary>
|
||||
/// Remove metadata argument
|
||||
/// </summary>
|
||||
public class RemoveMetadataArgument : Argument
|
||||
{
|
||||
public RemoveMetadataArgument()
|
||||
{
|
||||
}
|
||||
|
||||
public override string GetStringValue()
|
||||
{
|
||||
return $"-map_metadata -1 ";
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue