aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Subtitles/SrtParser.cs
blob: 19fb951dc5252b4f529907dca755afd969a734ae (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>
    /// SubRip subtitle parser.
    /// </summary>
    public class SrtParser : SubtitleEditParser<SubRip>
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="SrtParser"/> class.
        /// </summary>
        /// <param name="logger">The logger.</param>
        public SrtParser(ILogger logger) : base(logger)
        {
        }
    }
}