expand on dlna profiles

This commit is contained in:
Luke Pulverenti
2014-03-13 15:08:02 -04:00
parent bd53ddc67c
commit 0db3588529
24 changed files with 517 additions and 663 deletions

View File

@@ -0,0 +1,16 @@
namespace MediaBrowser.Controller.Dlna
{
public class TranscodingProfile
{
public string Container { get; set; }
public DlnaProfileType Type { get; set; }
public string MimeType { get; set; }
public string VideoCodec { get; set; }
public string AudioCodec { get; set; }
}
}