mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 14:03:03 +03:00
14 lines
290 B
C#
14 lines
290 B
C#
#nullable enable
|
|
|
|
using Nikse.SubtitleEdit.Core.SubtitleFormats;
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
{
|
|
/// <summary>
|
|
/// Advanced SubStation Alpha subtitle parser.
|
|
/// </summary>
|
|
public class AssParser : SubtitleEditParser<AdvancedSubStationAlpha>
|
|
{
|
|
}
|
|
}
|