mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			676 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			676 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,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The data.
 | 
						|
        /// </summary>
 | 
						|
        Data,
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The lyric.
 | 
						|
        /// </summary>
 | 
						|
        Lyric
 | 
						|
    }
 | 
						|
}
 |