mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
20 lines
588 B
C#
20 lines
588 B
C#
using System.IO;
|
|
using System.Threading;
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
{
|
|
/// <summary>
|
|
/// Interface ISubtitleWriter
|
|
/// </summary>
|
|
public interface ISubtitleWriter
|
|
{
|
|
/// <summary>
|
|
/// Writes the specified information.
|
|
/// </summary>
|
|
/// <param name="info">The information.</param>
|
|
/// <param name="stream">The stream.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void Write(SubtitleTrackInfo info, Stream stream, CancellationToken cancellationToken);
|
|
}
|
|
}
|