mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
18 lines
467 B
C#
18 lines
467 B
C#
using FFMpegCore.FFMPEG.Enums;
|
|
|
|
namespace FFMpegCore.FFMPEG.Argument
|
|
{
|
|
/// <summary>
|
|
/// Represents parameter of audio codec and it's quality
|
|
/// </summary>
|
|
public class AudioCodecArgument : Argument<AudioCodec>
|
|
{
|
|
public AudioCodecArgument(AudioCodec value) : base(value) { }
|
|
|
|
/// <inheritdoc/>
|
|
public override string GetStringValue()
|
|
{
|
|
return $"-c:a {Value.ToString().ToLower()}";
|
|
}
|
|
}
|
|
}
|