mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Enum MediaStreamType
 | 
						|
    /// </summary>
 | 
						|
    public enum MediaStreamType
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// The audio
 | 
						|
        /// </summary>
 | 
						|
        Audio,
 | 
						|
        /// <summary>
 | 
						|
        /// The video
 | 
						|
        /// </summary>
 | 
						|
        Video,
 | 
						|
        /// <summary>
 | 
						|
        /// The subtitle
 | 
						|
        /// </summary>
 | 
						|
        Subtitle,
 | 
						|
        /// <summary>
 | 
						|
        /// The embedded image
 | 
						|
        /// </summary>
 | 
						|
        EmbeddedImage
 | 
						|
    }
 | 
						|
} |