diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-11 19:02:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-11 19:02:28 -0400 |
| commit | b9b568de13d81f9db1a8502d50940475c1d79c72 (patch) | |
| tree | a808b700095f876e437b95c432c0220e241f9fda /MediaBrowser.Controller/Channels/ChannelMediaInfo.cs | |
| parent | 0d605b8672ece5129e833a2e9cde11a8aaf1b62a (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Channels/ChannelMediaInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ChannelMediaInfo.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs new file mode 100644 index 0000000000..8105bf43cd --- /dev/null +++ b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs @@ -0,0 +1,26 @@ +using System.Collections.Generic; + +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; } + + public ChannelMediaInfo() + { + RequiredHttpHeaders = new Dictionary<string, string>(); + } + } +}
\ No newline at end of file |
