mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 11:58:27 +01:00
progress on channels api
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.Dlna
|
||||
{
|
||||
public class TranscodingProfile
|
||||
@@ -9,8 +10,28 @@ namespace MediaBrowser.Controller.Dlna
|
||||
|
||||
public string MimeType { get; set; }
|
||||
|
||||
public string OrgPn { get; set; }
|
||||
|
||||
public string VideoCodec { get; set; }
|
||||
|
||||
public string AudioCodec { get; set; }
|
||||
|
||||
public List<TranscodingSetting> Settings { get; set; }
|
||||
|
||||
public TranscodingProfile()
|
||||
{
|
||||
Settings = new List<TranscodingSetting>();
|
||||
}
|
||||
}
|
||||
|
||||
public class TranscodingSetting
|
||||
{
|
||||
public TranscodingSettingType Name { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
|
||||
public enum TranscodingSettingType
|
||||
{
|
||||
Profile
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user