2019-01-13 20:02:23 +00:00
|
|
|
using System.IO;
|
2018-12-14 09:40:55 +00:00
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
|
|
{
|
|
|
|
public interface ISubtitleParser
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Parses the specified stream.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="stream">The stream.</param>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <returns>SubtitleTrackInfo.</returns>
|
|
|
|
SubtitleTrackInfo Parse(Stream stream, CancellationToken cancellationToken);
|
|
|
|
}
|
|
|
|
}
|