You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Session/TranscodingInfo.cs

42 lines
916 B

#nullable disable
#pragma warning disable CS1591
using System;
6 years ago
namespace MediaBrowser.Model.Session
{
public class TranscodingInfo
{
public TranscodingInfo()
{
TranscodeReasons = Array.Empty<TranscodeReason>();
}
6 years ago
public string AudioCodec { get; set; }
6 years ago
public string VideoCodec { get; set; }
6 years ago
public string Container { get; set; }
6 years ago
public bool IsVideoDirect { get; set; }
6 years ago
public bool IsAudioDirect { get; set; }
6 years ago
public int? Bitrate { get; set; }
public float? Framerate { get; set; }
6 years ago
public double? CompletionPercentage { get; set; }
public int? Width { get; set; }
6 years ago
public int? Height { get; set; }
6 years ago
public int? AudioChannels { get; set; }
public string HardwareAccelerationType { get; set; }
6 years ago
public TranscodeReason[] TranscodeReasons { get; set; }
}
}