Interface VideoPayloadOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
VideoPayload,VideoPayload.Builder
public interface VideoPayloadOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description floatgetFrameRate()FPS of the video.StringgetMimeType()Video format.com.google.protobuf.ByteStringgetMimeTypeBytes()Video format.StringgetSignedUri()Signed uri of the video file in the service bucket.com.google.protobuf.ByteStringgetSignedUriBytes()Signed uri of the video file in the service bucket.VideoThumbnailgetVideoThumbnails(int index)The list of video thumbnails.intgetVideoThumbnailsCount()The list of video thumbnails.List<VideoThumbnail>getVideoThumbnailsList()The list of video thumbnails.VideoThumbnailOrBuildergetVideoThumbnailsOrBuilder(int index)The list of video thumbnails.List<? extends VideoThumbnailOrBuilder>getVideoThumbnailsOrBuilderList()The list of video thumbnails.StringgetVideoUri()Video uri from the user bucket.com.google.protobuf.ByteStringgetVideoUriBytes()Video uri from the user bucket.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMimeType
String getMimeType()
Video format.
string mime_type = 1;- Returns:
- The mimeType.
-
getMimeTypeBytes
com.google.protobuf.ByteString getMimeTypeBytes()
Video format.
string mime_type = 1;- Returns:
- The bytes for mimeType.
-
getVideoUri
String getVideoUri()
Video uri from the user bucket.
string video_uri = 2;- Returns:
- The videoUri.
-
getVideoUriBytes
com.google.protobuf.ByteString getVideoUriBytes()
Video uri from the user bucket.
string video_uri = 2;- Returns:
- The bytes for videoUri.
-
getVideoThumbnailsList
List<VideoThumbnail> getVideoThumbnailsList()
The list of video thumbnails.
repeated .google.cloud.datalabeling.v1beta1.VideoThumbnail video_thumbnails = 3;
-
getVideoThumbnails
VideoThumbnail getVideoThumbnails(int index)
The list of video thumbnails.
repeated .google.cloud.datalabeling.v1beta1.VideoThumbnail video_thumbnails = 3;
-
getVideoThumbnailsCount
int getVideoThumbnailsCount()
The list of video thumbnails.
repeated .google.cloud.datalabeling.v1beta1.VideoThumbnail video_thumbnails = 3;
-
getVideoThumbnailsOrBuilderList
List<? extends VideoThumbnailOrBuilder> getVideoThumbnailsOrBuilderList()
The list of video thumbnails.
repeated .google.cloud.datalabeling.v1beta1.VideoThumbnail video_thumbnails = 3;
-
getVideoThumbnailsOrBuilder
VideoThumbnailOrBuilder getVideoThumbnailsOrBuilder(int index)
The list of video thumbnails.
repeated .google.cloud.datalabeling.v1beta1.VideoThumbnail video_thumbnails = 3;
-
getFrameRate
float getFrameRate()
FPS of the video.
float frame_rate = 4;- Returns:
- The frameRate.
-
getSignedUri
String getSignedUri()
Signed uri of the video file in the service bucket.
string signed_uri = 5;- Returns:
- The signedUri.
-
getSignedUriBytes
com.google.protobuf.ByteString getSignedUriBytes()
Signed uri of the video file in the service bucket.
string signed_uri = 5;- Returns:
- The bytes for signedUri.
-
-