public enum DaiIngestErrorReason extends Enum<DaiIngestErrorReason>
Java class for DaiIngestErrorReason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DaiIngestErrorReason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="INVALID_INGEST_URL"/>
<enumeration value="INVALID_CLOSED_CAPTION_URL"/>
<enumeration value="MISSING_CLOSED_CAPTION_URL"/>
<enumeration value="COULD_NOT_FETCH_HLS"/>
<enumeration value="COULD_NOT_FETCH_SUBTITLES"/>
<enumeration value="MISSING_SUBTITLE_LANGUAGE"/>
<enumeration value="COULD_NOT_FETCH_MEDIA"/>
<enumeration value="MALFORMED_MEDIA_BYTES"/>
<enumeration value="CHAPTER_TIME_OUT_OF_BOUNDS"/>
<enumeration value="INTERNAL_ERROR"/>
<enumeration value="CONTENT_HAS_CHAPTER_TIMES_BUT_NO_MIDROLL_SETTINGS"/>
<enumeration value="MALFORMED_MEDIA_PLAYLIST"/>
<enumeration value="MALFORMED_SUBTITLES"/>
<enumeration value="PLAYLIST_ITEM_URL_DOES_NOT_MATCH_INGEST_COMMON_PATH"/>
<enumeration value="COULD_NOT_UPLOAD_SPLIT_MEDIA_AUTHENTICATION_FAILED"/>
<enumeration value="COULD_NOT_UPLOAD_SPLIT_MEDIA_CONNECTION_FAILED"/>
<enumeration value="COULD_NOT_UPLOAD_SPLIT_MEDIA_WRITE_FAILED"/>
<enumeration value="PLAYLISTS_HAVE_DIFFERENT_NUMBER_OF_DISCONTINUITIES"/>
<enumeration value="PLAYIST_HAS_NO_STARTING_PTS_VALUE"/>
<enumeration value="PLAYLIST_DISCONTINUITY_PTS_VALUES_DIFFER_TOO_MUCH"/>
<enumeration value="SEGMENT_HAS_NO_PTS"/>
<enumeration value="SUBTITLE_LANGUAGE_DOES_NOT_MATCH_LANGUAGE_IN_FEED"/>
<enumeration value="CANNOT_DETERMINE_CORRECT_SUBTITLES_FOR_LANGUAGE"/>
<enumeration value="NO_CDN_CONFIGURATION_FOUND"/>
<enumeration value="CONTENT_HAS_MIDROLLS_BUT_NO_SPLIT_CONTENT_CONFIG"/>
<enumeration value="CONTENT_HAS_MIDROLLS_BUT_SOURCE_HAS_MIDROLLS_DISABLED"/>
<enumeration value="ADTS_PARSE_ERROR"/>
<enumeration value="AAC_SPLIT_ERROR"/>
<enumeration value="AAC_PARSE_ERROR"/>
<enumeration value="TS_PARSE_ERROR"/>
<enumeration value="TS_SPLIT_ERROR"/>
<enumeration value="UNSUPPORTED_CONTAINER_FORMAT"/>
<enumeration value="UNSUPPORTED_TS_MEDIA_FORMAT"/>
<enumeration value="NO_IFRAMES_NEAR_CUE_POINT"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AAC_PARSE_ERROR
Error parsing an AAC file while splitting the content.
|
AAC_SPLIT_ERROR
Error splitting an AAC segment.
|
ADTS_PARSE_ERROR
Error parsing ADTS while splitting the content.
|
CANNOT_DETERMINE_CORRECT_SUBTITLES_FOR_LANGUAGE
There are multiple subtitles files at the closed caption URI, and none of them match the
language defined in the feed.
|
CHAPTER_TIME_OUT_OF_BOUNDS
A chapter time for the content is outside of the range of the content's duration.
|
CONTENT_HAS_CHAPTER_TIMES_BUT_NO_MIDROLL_SETTINGS
The content has chapter times but the content's source has no CDN settings for midrolls.
|
CONTENT_HAS_MIDROLLS_BUT_NO_SPLIT_CONTENT_CONFIG
The content has midrolls but there was no split content config on the CDN configuration for
that content so the content was not conditioned.
|
CONTENT_HAS_MIDROLLS_BUT_SOURCE_HAS_MIDROLLS_DISABLED
The content has midrolls but the source the content was ingested from has mid-rolls disabled,
so the content was not conditioned.
|
COULD_NOT_FETCH_HLS
There was an error while trying to fetch the HLS from the specified ingest URL.
|
COULD_NOT_FETCH_MEDIA
Error fetching the media files from the URLs specified in the master HLS playlist.
|
COULD_NOT_FETCH_SUBTITLES
There was an error while trying to fetch the subtitles from the specified closed caption url.
|
COULD_NOT_UPLOAD_SPLIT_MEDIA_AUTHENTICATION_FAILED
Uploading split media segments failed due to an authentication error.
|
COULD_NOT_UPLOAD_SPLIT_MEDIA_CONNECTION_FAILED
Uploading spit media segments failed due to a connection error.
|
COULD_NOT_UPLOAD_SPLIT_MEDIA_WRITE_FAILED
Uploading split media segments failed due to a write error.
|
INTERNAL_ERROR
An internal error occurred while conditioning the content.
|
INVALID_CLOSED_CAPTION_URL
The closed caption URL provided in the publisher's content source feed is invalid.
|
INVALID_INGEST_URL
The ingest URL provided in the publisher's content source feed is invalid.
|
MALFORMED_MEDIA_BYTES
The media from the publisher's CDN is malformed and cannot be conditioned.
|
MALFORMED_MEDIA_PLAYLIST
There is bad/missing/malformed data in a media playlist.
|
MALFORMED_SUBTITLES
There is bad/missing/malformed data in a subtitles file.
|
MISSING_CLOSED_CAPTION_URL
There is no closed caption URL for a content in the publisher's content source feed.
|
MISSING_SUBTITLE_LANGUAGE
One of the subtitles from the closed caption URL is missing a language.
|
NO_CDN_CONFIGURATION_FOUND
No CDN configuration found for the content.
|
NO_IFRAMES_NEAR_CUE_POINT
Error splitting because there were no i-frames near the target split point.
|
PLAYIST_HAS_NO_STARTING_PTS_VALUE
The playlist does not have a starting PTS value.
|
PLAYLIST_DISCONTINUITY_PTS_VALUES_DIFFER_TOO_MUCH
The PTS at a discontinuity varies too much between the different variants.
|
PLAYLIST_ITEM_URL_DOES_NOT_MATCH_INGEST_COMMON_PATH
A playlist item has a URL that does not begin with the ingest common path provided in the DAI
settings.
|
PLAYLISTS_HAVE_DIFFERENT_NUMBER_OF_DISCONTINUITIES
Variants in a playlist do not have the same number of discontinuities.
|
SEGMENT_HAS_NO_PTS
A media segment has no PTS.
|
SUBTITLE_LANGUAGE_DOES_NOT_MATCH_LANGUAGE_IN_FEED
The language in the subtitles file does not match the language specified in the feed.
|
TS_PARSE_ERROR
Error parsing a TS file while splitting the content.
|
TS_SPLIT_ERROR
Error splitting a TS file while splitting the content.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
UNSUPPORTED_CONTAINER_FORMAT
Encountered an unsupported container format while splitting the content.
|
UNSUPPORTED_TS_MEDIA_FORMAT
Encountered an unsupported TS media format while splitting the content.
|
| Modifier and Type | Method and Description |
|---|---|
static DaiIngestErrorReason |
fromValue(String v) |
String |
value() |
static DaiIngestErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DaiIngestErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DaiIngestErrorReason INVALID_INGEST_URL
public static final DaiIngestErrorReason INVALID_CLOSED_CAPTION_URL
public static final DaiIngestErrorReason MISSING_CLOSED_CAPTION_URL
public static final DaiIngestErrorReason COULD_NOT_FETCH_HLS
public static final DaiIngestErrorReason COULD_NOT_FETCH_SUBTITLES
public static final DaiIngestErrorReason MISSING_SUBTITLE_LANGUAGE
public static final DaiIngestErrorReason COULD_NOT_FETCH_MEDIA
public static final DaiIngestErrorReason MALFORMED_MEDIA_BYTES
public static final DaiIngestErrorReason CHAPTER_TIME_OUT_OF_BOUNDS
public static final DaiIngestErrorReason INTERNAL_ERROR
public static final DaiIngestErrorReason CONTENT_HAS_CHAPTER_TIMES_BUT_NO_MIDROLL_SETTINGS
public static final DaiIngestErrorReason MALFORMED_MEDIA_PLAYLIST
public static final DaiIngestErrorReason MALFORMED_SUBTITLES
public static final DaiIngestErrorReason PLAYLIST_ITEM_URL_DOES_NOT_MATCH_INGEST_COMMON_PATH
public static final DaiIngestErrorReason COULD_NOT_UPLOAD_SPLIT_MEDIA_AUTHENTICATION_FAILED
public static final DaiIngestErrorReason COULD_NOT_UPLOAD_SPLIT_MEDIA_CONNECTION_FAILED
public static final DaiIngestErrorReason COULD_NOT_UPLOAD_SPLIT_MEDIA_WRITE_FAILED
public static final DaiIngestErrorReason PLAYLISTS_HAVE_DIFFERENT_NUMBER_OF_DISCONTINUITIES
public static final DaiIngestErrorReason PLAYIST_HAS_NO_STARTING_PTS_VALUE
public static final DaiIngestErrorReason PLAYLIST_DISCONTINUITY_PTS_VALUES_DIFFER_TOO_MUCH
public static final DaiIngestErrorReason SEGMENT_HAS_NO_PTS
public static final DaiIngestErrorReason SUBTITLE_LANGUAGE_DOES_NOT_MATCH_LANGUAGE_IN_FEED
public static final DaiIngestErrorReason CANNOT_DETERMINE_CORRECT_SUBTITLES_FOR_LANGUAGE
public static final DaiIngestErrorReason NO_CDN_CONFIGURATION_FOUND
public static final DaiIngestErrorReason CONTENT_HAS_MIDROLLS_BUT_NO_SPLIT_CONTENT_CONFIG
public static final DaiIngestErrorReason CONTENT_HAS_MIDROLLS_BUT_SOURCE_HAS_MIDROLLS_DISABLED
public static final DaiIngestErrorReason ADTS_PARSE_ERROR
public static final DaiIngestErrorReason AAC_SPLIT_ERROR
public static final DaiIngestErrorReason AAC_PARSE_ERROR
public static final DaiIngestErrorReason TS_PARSE_ERROR
public static final DaiIngestErrorReason TS_SPLIT_ERROR
public static final DaiIngestErrorReason UNSUPPORTED_CONTAINER_FORMAT
public static final DaiIngestErrorReason UNSUPPORTED_TS_MEDIA_FORMAT
public static final DaiIngestErrorReason NO_IFRAMES_NEAR_CUE_POINT
public static final DaiIngestErrorReason UNKNOWN
public static DaiIngestErrorReason[] values()
for (DaiIngestErrorReason c : DaiIngestErrorReason.values()) System.out.println(c);
public static DaiIngestErrorReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static DaiIngestErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.