You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
945 B
34 lines
945 B
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
{
|
|
public class MediaProfile
|
|
{
|
|
public string Container { get; set; }
|
|
public string AudioCodec { get; set; }
|
|
public string VideoCodec { get; set; }
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
public string OrgPn { get; set; }
|
|
public string MimeType { get; set; }
|
|
|
|
public ProfileCondition[] Conditions { get; set; }
|
|
|
|
public MediaProfile()
|
|
{
|
|
Conditions = new ProfileCondition[] {};
|
|
}
|
|
|
|
public List<string> GetAudioCodecs()
|
|
{
|
|
return (AudioCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
|
|
}
|
|
|
|
public List<string> GetVideoCodecs()
|
|
{
|
|
return (VideoCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
|
|
}
|
|
}
|
|
}
|