10 lines
188 B
C#
10 lines
188 B
C#
namespace ErsatzTV.FFmpeg.Format;
|
|
|
|
public static class AudioFormat
|
|
{
|
|
public const string Aac = "aac";
|
|
public const string Ac3 = "ac3";
|
|
|
|
public const string Copy = "copy";
|
|
}
|