move media encoder to server project

This commit is contained in:
Luke Pulverenti
2014-01-12 01:31:21 -05:00
parent 5f7871ca54
commit c8a106f485
25 changed files with 144 additions and 73 deletions

View File

@@ -1,4 +1,5 @@

using System.Collections.Generic;
namespace MediaBrowser.Model.Entities
{
/// <summary>
@@ -145,4 +146,24 @@ namespace MediaBrowser.Model.Entities
/// </summary>
Subtitle
}
public class MediaInfo
{
/// <summary>
/// Gets or sets the media streams.
/// </summary>
/// <value>The media streams.</value>
public List<MediaStream> MediaStreams { get; set; }
/// <summary>
/// Gets or sets the format.
/// </summary>
/// <value>The format.</value>
public string Format { get; set; }
public MediaInfo()
{
MediaStreams = new List<MediaStream>();
}
}
}