using System.IO; namespace MediaBrowser.MediaEncoding.Subtitles { /// /// Interface ISubtitleWriter /// public interface ISubtitleWriter { /// /// Writes the specified information. /// /// The information. /// The stream. void Write(SubtitleTrackInfo info, Stream stream); } }