Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs

40 lines
1.2 KiB
C#
Raw Normal View History

using MediaBrowser.Model.MediaInfo;
using System;
2014-06-02 15:32:41 -04:00
using System.Collections.Generic;
2014-05-11 19:02:28 -04: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 15:41:35 -04:00
public int? AudioSampleRate { get; set; }
2014-05-11 19:02:28 -04:00
2014-06-01 15:41:35 -04:00
public string VideoProfile { get; set; }
public float? VideoLevel { get; set; }
public float? Framerate { get; set; }
2014-06-23 12:05:19 -04:00
public bool? IsAnamorphic { get; set; }
public MediaProtocol Protocol { get; set; }
2014-05-11 19:02:28 -04:00
public ChannelMediaInfo()
{
2014-06-02 15:32:41 -04:00
RequiredHttpHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
// This is most common
Protocol = MediaProtocol.Http;
2014-05-11 19:02:28 -04:00
}
}
}