mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
13 lines
264 B
C#
13 lines
264 B
C#
namespace FFMpegCore.Arguments;
|
|
|
|
public class ID3V2VersionArgument : IArgument
|
|
{
|
|
private readonly int _version;
|
|
|
|
public ID3V2VersionArgument(int version)
|
|
{
|
|
_version = version;
|
|
}
|
|
|
|
public string Text => $"-id3v2_version {_version}";
|
|
}
|