2014-06-02 19:32:41 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2014-05-11 23:02:28 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
{
|
|
|
|
|
public class ChannelMediaInfo
|
|
|
|
|
{
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
|
|
|
|
|
public Dictionary<string, string> RequiredHttpHeaders { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Container { get; set; }
|
|
|
|
|
public string AudioCodec { get; set; }
|
|
|
|
|
public string VideoCodec { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? AudioBitrate { get; set; }
|
|
|
|
|
public int? VideoBitrate { get; set; }
|
|
|
|
|
public int? Width { get; set; }
|
|
|
|
|
public int? Height { get; set; }
|
|
|
|
|
public int? AudioChannels { get; set; }
|
2014-06-01 19:41:35 +00:00
|
|
|
|
public int? AudioSampleRate { get; set; }
|
2014-05-11 23:02:28 +00:00
|
|
|
|
|
2014-05-18 19:58:42 +00:00
|
|
|
|
public bool IsRemote { get; set; }
|
|
|
|
|
|
2014-06-01 19:41:35 +00:00
|
|
|
|
public string VideoProfile { get; set; }
|
|
|
|
|
public float? VideoLevel { get; set; }
|
|
|
|
|
public float? Framerate { get; set; }
|
|
|
|
|
|
2014-05-11 23:02:28 +00:00
|
|
|
|
public ChannelMediaInfo()
|
|
|
|
|
{
|
2014-06-02 19:32:41 +00:00
|
|
|
|
RequiredHttpHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
2014-05-18 19:58:42 +00:00
|
|
|
|
IsRemote = true;
|
2014-05-11 23:02:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|