2013-09-18 18:09:26 -07:00
|
|
|
namespace NzbDrone.Core.MediaFiles.MediaInfo
|
2013-01-20 16:35:42 -08:00
|
|
|
{
|
|
|
|
public class MediaInfoModel
|
|
|
|
{
|
|
|
|
public string VideoCodec { get; set; }
|
|
|
|
public int VideoBitrate { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
public int Height { get; set; }
|
|
|
|
public string AudioFormat { get; set; }
|
|
|
|
public int AudioBitrate { get; set; }
|
|
|
|
public int RunTime { get; set; }
|
|
|
|
public int AudioStreamCount { get; set; }
|
|
|
|
public int AudioChannels { get; set; }
|
|
|
|
public string AudioProfile { get; set; }
|
|
|
|
public decimal VideoFps { get; set; }
|
|
|
|
public string AudioLanguages { get; set; }
|
|
|
|
public string Subtitles { get; set; }
|
|
|
|
public string ScanType { get; set; }
|
|
|
|
}
|
|
|
|
}
|