Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/4a1498f614ca3f51908e8e7ead0ea921222f0f2b/MediaBrowser.Model/Session/TranscodingInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Session/TranscodingInfo.cs

35 lines
797 B

#nullable disable
#pragma warning disable CS1591
6 years ago
namespace MediaBrowser.Model.Session
{
public class TranscodingInfo
{
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 HardwareEncodingType? HardwareAccelerationType { get; set; }
public TranscodeReason TranscodeReasons { get; set; }
6 years ago
}
}