mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
@@ -0,0 +1,35 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NzbDrone.Core.Extras.Subtitles
|
||||
{
|
||||
public static class SubtitleFileExtensions
|
||||
{
|
||||
private static HashSet<string> _fileExtensions;
|
||||
|
||||
static SubtitleFileExtensions()
|
||||
{
|
||||
_fileExtensions = new HashSet<string>
|
||||
{
|
||||
".aqt",
|
||||
".ass",
|
||||
".idx",
|
||||
".jss",
|
||||
".psb",
|
||||
".rt",
|
||||
".smi",
|
||||
".srt",
|
||||
".ssa",
|
||||
".sub",
|
||||
".txt",
|
||||
".utf",
|
||||
".utf8",
|
||||
".utf-8"
|
||||
};
|
||||
}
|
||||
|
||||
public static HashSet<string> Extensions
|
||||
{
|
||||
get { return _fileExtensions; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user