You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
528 B
18 lines
528 B
using System.IO;
|
|
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);
|
|
}
|
|
}
|