42 lines
2.0 KiB
TypeScript
42 lines
2.0 KiB
TypeScript
/**
|
|
* Jellyfin API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 10.8.9
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
import { RequestFile } from './models';
|
|
|
|
export enum TranscodeReason {
|
|
ContainerNotSupported = <any> 'ContainerNotSupported',
|
|
VideoCodecNotSupported = <any> 'VideoCodecNotSupported',
|
|
AudioCodecNotSupported = <any> 'AudioCodecNotSupported',
|
|
SubtitleCodecNotSupported = <any> 'SubtitleCodecNotSupported',
|
|
AudioIsExternal = <any> 'AudioIsExternal',
|
|
SecondaryAudioNotSupported = <any> 'SecondaryAudioNotSupported',
|
|
VideoProfileNotSupported = <any> 'VideoProfileNotSupported',
|
|
VideoLevelNotSupported = <any> 'VideoLevelNotSupported',
|
|
VideoResolutionNotSupported = <any> 'VideoResolutionNotSupported',
|
|
VideoBitDepthNotSupported = <any> 'VideoBitDepthNotSupported',
|
|
VideoFramerateNotSupported = <any> 'VideoFramerateNotSupported',
|
|
RefFramesNotSupported = <any> 'RefFramesNotSupported',
|
|
AnamorphicVideoNotSupported = <any> 'AnamorphicVideoNotSupported',
|
|
InterlacedVideoNotSupported = <any> 'InterlacedVideoNotSupported',
|
|
AudioChannelsNotSupported = <any> 'AudioChannelsNotSupported',
|
|
AudioProfileNotSupported = <any> 'AudioProfileNotSupported',
|
|
AudioSampleRateNotSupported = <any> 'AudioSampleRateNotSupported',
|
|
AudioBitDepthNotSupported = <any> 'AudioBitDepthNotSupported',
|
|
ContainerBitrateExceedsLimit = <any> 'ContainerBitrateExceedsLimit',
|
|
VideoBitrateNotSupported = <any> 'VideoBitrateNotSupported',
|
|
AudioBitrateNotSupported = <any> 'AudioBitrateNotSupported',
|
|
UnknownVideoStreamInfo = <any> 'UnknownVideoStreamInfo',
|
|
UnknownAudioStreamInfo = <any> 'UnknownAudioStreamInfo',
|
|
DirectPlayError = <any> 'DirectPlayError',
|
|
VideoRangeTypeNotSupported = <any> 'VideoRangeTypeNotSupported'
|
|
}
|