mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.IO;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// The direct live TV stream provider.
 | 
						|
    /// </summary>
 | 
						|
    /// <remarks>
 | 
						|
    /// Deprecated.
 | 
						|
    /// </remarks>
 | 
						|
    public interface IDirectStreamProvider
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the live stream, shared streams seek to the end of the file first.
 | 
						|
        /// </summary>
 | 
						|
        /// <returns>The stream.</returns>
 | 
						|
        Stream GetStream();
 | 
						|
    }
 | 
						|
}
 |