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.
37 lines
968 B
37 lines
968 B
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
{
|
|
public class DirectPlayProfile
|
|
{
|
|
public string Container { get; set; }
|
|
public string AudioCodec { get; set; }
|
|
public string VideoCodec { get; set; }
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
public List<string> GetContainers()
|
|
{
|
|
return (Container ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
|
|
public enum DlnaProfileType
|
|
{
|
|
Audio = 0,
|
|
Video = 1,
|
|
Photo = 2
|
|
}
|
|
}
|