mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 04:20:46 +00:00
110 lines
3.3 KiB
C#
110 lines
3.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost when
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
#nullable enable
|
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
{
|
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
using LukeHagar.PlexAPI.SDK.Utils;
|
|
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
public class GetMediaMetaDataMedia
|
|
{
|
|
|
|
/// <summary>
|
|
/// Unique media identifier.
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Duration of the media in milliseconds.
|
|
/// </summary>
|
|
[JsonProperty("duration")]
|
|
public long Duration { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Bitrate in bits per second.
|
|
/// </summary>
|
|
[JsonProperty("bitrate")]
|
|
public long Bitrate { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Video width in pixels.
|
|
/// </summary>
|
|
[JsonProperty("width")]
|
|
public long Width { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Video height in pixels.
|
|
/// </summary>
|
|
[JsonProperty("height")]
|
|
public long Height { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Aspect ratio of the video.
|
|
/// </summary>
|
|
[JsonProperty("aspectRatio")]
|
|
public float AspectRatio { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Number of audio channels.
|
|
/// </summary>
|
|
[JsonProperty("audioChannels")]
|
|
public long AudioChannels { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Audio codec used.
|
|
/// </summary>
|
|
[JsonProperty("audioCodec")]
|
|
public string AudioCodec { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Video codec used.
|
|
/// </summary>
|
|
[JsonProperty("videoCodec")]
|
|
public string VideoCodec { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Video resolution (e.g., 4k).
|
|
/// </summary>
|
|
[JsonProperty("videoResolution")]
|
|
public string VideoResolution { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// File container type.
|
|
/// </summary>
|
|
[JsonProperty("container")]
|
|
public string Container { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Frame rate of the video (e.g., 24p).
|
|
/// </summary>
|
|
[JsonProperty("videoFrameRate")]
|
|
public string VideoFrameRate { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Video profile (e.g., main 10).
|
|
/// </summary>
|
|
[JsonProperty("videoProfile")]
|
|
public string VideoProfile { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Indicates whether voice activity is detected.
|
|
/// </summary>
|
|
[JsonProperty("hasVoiceActivity")]
|
|
public bool HasVoiceActivity { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// An array of parts for this media item.
|
|
/// </summary>
|
|
[JsonProperty("Part")]
|
|
public List<GetMediaMetaDataPart> Part { get; set; } = default!;
|
|
}
|
|
} |