2021-01-08 22:03:02 +00:00
|
|
|
#nullable enable
|
2020-08-04 14:20:52 +00:00
|
|
|
|
2021-01-08 22:21:50 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
2021-01-08 22:03:02 +00:00
|
|
|
using Nikse.SubtitleEdit.Core.SubtitleFormats;
|
2018-12-14 09:40:55 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
|
|
{
|
2021-01-08 22:03:02 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Advanced SubStation Alpha subtitle parser.
|
|
|
|
/// </summary>
|
|
|
|
public class AssParser : SubtitleEditParser<AdvancedSubStationAlpha>
|
2018-12-14 09:40:55 +00:00
|
|
|
{
|
2021-01-08 22:21:50 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="AssParser"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
public AssParser(ILogger logger) : base(logger)
|
|
|
|
{
|
|
|
|
}
|
2018-12-14 09:40:55 +00:00
|
|
|
}
|
|
|
|
}
|