mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	feat: make subtitleeditparser generic Authored-by: Claus Vium <cvium@users.noreply.github.com> Merged-by: Bond-009 <bond.009@outlook.com> Original-merge: 7323ccfc232d31797af3ceb8bad93cae1ea0898d
		
			
				
	
	
		
			26 lines
		
	
	
		
			854 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			854 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System.IO;
 | 
						|
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="fileExtension">The file extension.</param>
 | 
						|
        /// <returns>SubtitleTrackInfo.</returns>
 | 
						|
        SubtitleTrackInfo Parse(Stream stream, string fileExtension);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Determines whether the file extension is supported by the parser.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="fileExtension">The file extension.</param>
 | 
						|
        /// <returns>A value indicating whether the file extension is supported.</returns>
 | 
						|
        bool SupportsFileExtension(string fileExtension);
 | 
						|
    }
 | 
						|
}
 |