mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +01:00
added media profiles
This commit is contained in:
20
MediaBrowser.Controller/Dlna/MediaProfile.cs
Normal file
20
MediaBrowser.Controller/Dlna/MediaProfile.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
namespace MediaBrowser.Controller.Dlna
|
||||
{
|
||||
public class MediaProfile
|
||||
{
|
||||
public string Container { get; set; }
|
||||
public string[] AudioCodecs { get; set; }
|
||||
public string[] VideoCodecs { get; set; }
|
||||
|
||||
public DlnaProfileType Type { get; set; }
|
||||
public string OrgPn { get; set; }
|
||||
public string MimeType { get; set; }
|
||||
|
||||
public MediaProfile()
|
||||
{
|
||||
AudioCodecs = new string[] { };
|
||||
VideoCodecs = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user