mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 03:55:01 +01:00
update panasonic profile
This commit is contained in:
@@ -57,6 +57,7 @@ namespace MediaBrowser.Controller.Dlna
|
||||
Width,
|
||||
Height,
|
||||
Has64BitOffsets,
|
||||
VideoBitDepth,
|
||||
VideoBitrate,
|
||||
VideoFramerate,
|
||||
VideoLevel,
|
||||
|
||||
@@ -5,7 +5,7 @@ namespace MediaBrowser.Controller.Dlna
|
||||
{
|
||||
public class DirectPlayProfile
|
||||
{
|
||||
public string[] Containers { get; set; }
|
||||
public string Container { get; set; }
|
||||
public string AudioCodec { get; set; }
|
||||
public string VideoCodec { get; set; }
|
||||
|
||||
@@ -16,8 +16,11 @@ namespace MediaBrowser.Controller.Dlna
|
||||
public DirectPlayProfile()
|
||||
{
|
||||
Conditions = new List<ProfileCondition>();
|
||||
}
|
||||
|
||||
Containers = new string[] { };
|
||||
public List<string> GetContainers()
|
||||
{
|
||||
return (Container ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
|
||||
}
|
||||
|
||||
public List<string> GetAudioCodecs()
|
||||
|
||||
Reference in New Issue
Block a user