Interface VideoClassificationPredictionInstanceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VideoClassificationPredictionInstance,VideoClassificationPredictionInstance.Builder
public interface VideoClassificationPredictionInstanceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContent()The Google Cloud Storage location of the video on which to perform the prediction.com.google.protobuf.ByteStringgetContentBytes()The Google Cloud Storage location of the video on which to perform the prediction.StringgetMimeType()The MIME type of the content of the video.com.google.protobuf.ByteStringgetMimeTypeBytes()The MIME type of the content of the video.StringgetTimeSegmentEnd()The end, exclusive, of the video's time segment on which to perform the prediction.com.google.protobuf.ByteStringgetTimeSegmentEndBytes()The end, exclusive, of the video's time segment on which to perform the prediction.StringgetTimeSegmentStart()The beginning, inclusive, of the video's time segment on which to perform the prediction.com.google.protobuf.ByteStringgetTimeSegmentStartBytes()The beginning, inclusive, of the video's time segment on which to perform the prediction.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContent
String getContent()
The Google Cloud Storage location of the video on which to perform the prediction.
string content = 1;- Returns:
- The content.
-
getContentBytes
com.google.protobuf.ByteString getContentBytes()
The Google Cloud Storage location of the video on which to perform the prediction.
string content = 1;- Returns:
- The bytes for content.
-
getMimeType
String getMimeType()
The MIME type of the content of the video. Only the following are supported: video/mp4 video/avi video/quicktime
string mime_type = 2;- Returns:
- The mimeType.
-
getMimeTypeBytes
com.google.protobuf.ByteString getMimeTypeBytes()
The MIME type of the content of the video. Only the following are supported: video/mp4 video/avi video/quicktime
string mime_type = 2;- Returns:
- The bytes for mimeType.
-
getTimeSegmentStart
String getTimeSegmentStart()
The beginning, inclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision.
string time_segment_start = 3;- Returns:
- The timeSegmentStart.
-
getTimeSegmentStartBytes
com.google.protobuf.ByteString getTimeSegmentStartBytes()
The beginning, inclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision.
string time_segment_start = 3;- Returns:
- The bytes for timeSegmentStart.
-
getTimeSegmentEnd
String getTimeSegmentEnd()
The end, exclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision, and "inf" or "Infinity" is allowed, which means the end of the video.
string time_segment_end = 4;- Returns:
- The timeSegmentEnd.
-
getTimeSegmentEndBytes
com.google.protobuf.ByteString getTimeSegmentEndBytes()
The end, exclusive, of the video's time segment on which to perform the prediction. Expressed as a number of seconds as measured from the start of the video, with "s" appended at the end. Fractions are allowed, up to a microsecond precision, and "inf" or "Infinity" is allowed, which means the end of the video.
string time_segment_end = 4;- Returns:
- The bytes for timeSegmentEnd.
-
-