UNPKG

@jellyfin/sdk

Version:
45 lines (44 loc) 2.25 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /** * * @export * @enum {string} */ export declare const TranscodeReason: { readonly ContainerNotSupported: "ContainerNotSupported"; readonly VideoCodecNotSupported: "VideoCodecNotSupported"; readonly AudioCodecNotSupported: "AudioCodecNotSupported"; readonly SubtitleCodecNotSupported: "SubtitleCodecNotSupported"; readonly AudioIsExternal: "AudioIsExternal"; readonly SecondaryAudioNotSupported: "SecondaryAudioNotSupported"; readonly VideoProfileNotSupported: "VideoProfileNotSupported"; readonly VideoLevelNotSupported: "VideoLevelNotSupported"; readonly VideoResolutionNotSupported: "VideoResolutionNotSupported"; readonly VideoBitDepthNotSupported: "VideoBitDepthNotSupported"; readonly VideoFramerateNotSupported: "VideoFramerateNotSupported"; readonly RefFramesNotSupported: "RefFramesNotSupported"; readonly AnamorphicVideoNotSupported: "AnamorphicVideoNotSupported"; readonly InterlacedVideoNotSupported: "InterlacedVideoNotSupported"; readonly AudioChannelsNotSupported: "AudioChannelsNotSupported"; readonly AudioProfileNotSupported: "AudioProfileNotSupported"; readonly AudioSampleRateNotSupported: "AudioSampleRateNotSupported"; readonly AudioBitDepthNotSupported: "AudioBitDepthNotSupported"; readonly ContainerBitrateExceedsLimit: "ContainerBitrateExceedsLimit"; readonly VideoBitrateNotSupported: "VideoBitrateNotSupported"; readonly AudioBitrateNotSupported: "AudioBitrateNotSupported"; readonly UnknownVideoStreamInfo: "UnknownVideoStreamInfo"; readonly UnknownAudioStreamInfo: "UnknownAudioStreamInfo"; readonly DirectPlayError: "DirectPlayError"; readonly VideoRangeTypeNotSupported: "VideoRangeTypeNotSupported"; readonly VideoCodecTagNotSupported: "VideoCodecTagNotSupported"; }; export type TranscodeReason = typeof TranscodeReason[keyof typeof TranscodeReason];