mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Controller.Providers;
 | |
| using MediaBrowser.Model.Dto;
 | |
| using MediaBrowser.Model.Providers;
 | |
| using System.Collections.Generic;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Subtitles
 | |
| {
 | |
|     public interface ISubtitleProvider
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the name.
 | |
|         /// </summary>
 | |
|         /// <value>The name.</value>
 | |
|         string Name { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the supported media types.
 | |
|         /// </summary>
 | |
|         /// <value>The supported media types.</value>
 | |
|         IEnumerable<VideoContentType> SupportedMediaTypes { get; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Searches the subtitles.
 | |
|         /// </summary>
 | |
|         /// <param name="request">The request.</param>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task{IEnumerable{RemoteSubtitleInfo}}.</returns>
 | |
|         Task<IEnumerable<RemoteSubtitleInfo>> Search(SubtitleSearchRequest request, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the subtitles.
 | |
|         /// </summary>
 | |
|         /// <param name="id">The identifier.</param>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task{SubtitleResponse}.</returns>
 | |
|         Task<SubtitleResponse> GetSubtitles(string id, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the supported languages.
 | |
|         /// </summary>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task<IEnumerable<NameIdPair>>.</returns>
 | |
|         Task<IEnumerable<NameIdPair>> GetSupportedLanguages(CancellationToken cancellationToken);
 | |
|     }
 | |
| }
 |