aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Subtitles/AssParser.cs
blob: 8219aa7b47412c19dfa2a2493f92aaa3bda901fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#nullable enable

using Microsoft.Extensions.Logging;
using Nikse.SubtitleEdit.Core.SubtitleFormats;

namespace MediaBrowser.MediaEncoding.Subtitles
{
    /// <summary>
    /// Advanced SubStation Alpha subtitle parser.
    /// </summary>
    public class AssParser : SubtitleEditParser<AdvancedSubStationAlpha>
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="AssParser"/> class.
        /// </summary>
        /// <param name="logger">The logger.</param>
        public AssParser(ILogger logger) : base(logger)
        {
        }
    }
}