Uses of Class
video.api.client.api.models.Video
-
Packages that use Video Package Description video.api.client.api.clients video.api.client.api.models -
-
Uses of Video in video.api.client.api.clients
Methods in video.api.client.api.clients that return Video Modifier and Type Method Description VideoVideosApi. create(VideoCreationPayload videoCreationPayload)Create a video To create a video, you create its metadata first, before adding the video file (exception - when using an existing HTTP source).VideoVideosApi. get(String videoId)Show a video This call provides the same JSON information provided on video creation.VideoVideosApi. pickThumbnail(String videoId, VideoThumbnailPickPayload videoThumbnailPickPayload)Pick a thumbnail Pick a thumbnail from the given time code.VideoVideosApi. update(String videoId, VideoUpdatePayload videoUpdatePayload)Update a video Use this endpoint to update the parameters associated with your video.VideoVideosApi. upload(String videoId, File file)Upload a video To upload a video to the videoId you created.VideoVideosApi. upload(String videoId, File file, UploadProgressListener uploadProgressListener)Upload a video To upload a video to the videoId you created.VideoVideosApi. uploadThumbnail(String videoId, File file)Upload a thumbnail The thumbnail is the poster that appears in the player window before video playback begins.VideoVideosApi. uploadWithUploadToken(String token, File file)Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?token=<tokenId>`.VideoVideosApi. uploadWithUploadToken(String token, File file, UploadProgressListener uploadProgressListener)Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?token=<tokenId>`.Methods in video.api.client.api.clients that return types with arguments of type Video Modifier and Type Method Description ApiResponse<Video>VideosApi. createWithHttpInfo(VideoCreationPayload videoCreationPayload)Create a video To create a video, you create its metadata first, before adding the video file (exception - when using an existing HTTP source).Page<Video>VideosApi.APIlistRequest. execute()Execute list requestApiResponse<Video>VideosApi. getWithHttpInfo(String videoId)Show a video This call provides the same JSON information provided on video creation.ApiResponse<Video>VideosApi. pickThumbnailWithHttpInfo(String videoId, VideoThumbnailPickPayload videoThumbnailPickPayload)Pick a thumbnail Pick a thumbnail from the given time code.ApiResponse<Video>VideosApi. updateWithHttpInfo(String videoId, VideoUpdatePayload videoUpdatePayload)Update a video Use this endpoint to update the parameters associated with your video.ApiResponse<Video>VideosApi. uploadThumbnailWithHttpInfo(String videoId, File file)Upload a thumbnail The thumbnail is the poster that appears in the player window before video playback begins.ApiResponse<Video>VideosApi. uploadWithHttpInfo(String videoId, File file)Upload a video To upload a video to the videoId you created.ApiResponse<Video>VideosApi. uploadWithHttpInfo(String videoId, File file, UploadProgressListener uploadProgressListener)Upload a video To upload a video to the videoId you created.ApiResponse<Video>VideosApi. uploadWithUploadTokenWithHttpInfo(String token, File file)Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?token=<tokenId>`.ApiResponse<Video>VideosApi. uploadWithUploadTokenWithHttpInfo(String token, File file, UploadProgressListener uploadProgressListener)Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?token=<tokenId>`. -
Uses of Video in video.api.client.api.models
Methods in video.api.client.api.models that return Video Modifier and Type Method Description VideoVideo. _public(Boolean _public)VideoVideo. addMetadataItem(Metadata metadataItem)VideoVideo. addTagsItem(String tagsItem)VideoVideo. assets(VideoAssets assets)VideoVideo. createdAt(OffsetDateTime createdAt)VideoVideo. description(String description)VideoVideo. metadata(List<Metadata> metadata)VideoVideo. mp4Support(Boolean mp4Support)VideoVideo. panoramic(Boolean panoramic)VideoVideo. playerId(String playerId)VideoVideo. publishedAt(String publishedAt)VideoVideo. source(VideoSource source)VideoVideo. tags(List<String> tags)VideoVideo. title(String title)VideoVideo. updatedAt(OffsetDateTime updatedAt)VideoVideo. videoId(String videoId)Methods in video.api.client.api.models that return types with arguments of type Video Modifier and Type Method Description List<Video>VideosListResponse. getData()Get dataMethods in video.api.client.api.models with parameters of type Video Modifier and Type Method Description VideosListResponseVideosListResponse. addDataItem(Video dataItem)Method parameters in video.api.client.api.models with type arguments of type Video Modifier and Type Method Description VideosListResponseVideosListResponse. data(List<Video> data)voidVideosListResponse. setData(List<Video> data)
-