mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-01 19:17:23 -04:00
10 lines
169 B
C#
10 lines
169 B
C#
using System.IO;
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
{
|
|
public interface ISubtitleParser
|
|
{
|
|
SubtitleTrackInfo Parse(Stream stream);
|
|
}
|
|
}
|