mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
64 lines
1.6 KiB
C#
64 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using FFMpegCore;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|
{
|
|
public class MediaInfoModel : IEmbeddedDocument
|
|
{
|
|
public string RawStreamData { get; set; }
|
|
public string RawFrameData { get; set; }
|
|
public int SchemaRevision { get; set; }
|
|
|
|
public string ContainerFormat { get; set; }
|
|
public string VideoFormat { get; set; }
|
|
|
|
public string VideoCodecID { get; set; }
|
|
|
|
public string VideoProfile { get; set; }
|
|
|
|
public int VideoBitrate { get; set; }
|
|
|
|
public int VideoBitDepth { get; set; }
|
|
|
|
public int VideoMultiViewCount { get; set; }
|
|
|
|
public string VideoColourPrimaries { get; set; }
|
|
|
|
public string VideoTransferCharacteristics { get; set; }
|
|
|
|
public DoviConfigurationRecordSideData DoviConfigurationRecord { get; set; }
|
|
|
|
public HdrFormat VideoHdrFormat { get; set; }
|
|
|
|
public int Height { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
public string AudioFormat { get; set; }
|
|
|
|
public string AudioCodecID { get; set; }
|
|
|
|
public string AudioProfile { get; set; }
|
|
|
|
public int AudioBitrate { get; set; }
|
|
|
|
public TimeSpan RunTime { get; set; }
|
|
|
|
public int AudioStreamCount { get; set; }
|
|
|
|
public int AudioChannels { get; set; }
|
|
|
|
public string AudioChannelPositions { get; set; }
|
|
|
|
public decimal VideoFps { get; set; }
|
|
|
|
public List<string> AudioLanguages { get; set; }
|
|
|
|
public List<string> Subtitles { get; set; }
|
|
|
|
public string ScanType { get; set; }
|
|
}
|
|
}
|