Add ".eac3" audio file extension - thx borifix :)

See comment https://github.com/SubtitleEdit/subtitleedit/issues/4131#issuecomment-617902373 in #4131
This commit is contained in:
Nikolaj Olsson 2020-04-22 19:53:40 +02:00
parent 4e7c44294f
commit 824652faca

View File

@ -29,7 +29,7 @@ namespace Nikse.SubtitleEdit.Core
private static readonly Regex NumberSeparatorNumberRegEx = new Regex(@"\b\d+[\.:;] \d+\b", RegexOptions.Compiled);
public static string[] VideoFileExtensions { get; } = { ".avi", ".mkv", ".wmv", ".mpg", ".mpeg", ".divx", ".mp4", ".asf", ".flv", ".mov", ".m4v", ".vob", ".ogv", ".webm", ".ts", ".m2ts", ".mts", ".avs", ".mxf" };
public static string[] AudioFileExtensions { get; } = { ".mp3", ".wav", ".wma", ".ogg", ".mpa", ".m4a", ".ape", ".aiff", ".flac", ".aac", ".ac3", ".mka" };
public static string[] AudioFileExtensions { get; } = { ".mp3", ".wav", ".wma", ".ogg", ".mpa", ".m4a", ".ape", ".aiff", ".flac", ".aac", ".ac3", ".eac3", ".mka" };
public static string GetVideoFileFilter(bool includeAudioFiles)
{