-
Methods in video.api.client.api.clients that return Video
| Modifier and Type |
Method |
Description |
Video |
VideosApi.create(VideoCreatePayload videoCreatePayload) |
Create a video To create a video, you create its metadata first, before adding the video file (exception - when
using an existing HTTP source).
|
Video |
VideosApi.get(java.lang.String videoId) |
Show a video This call provides the same JSON information provided on video creation.
|
Video |
VideosApi.pickThumbnail(java.lang.String videoId,
VideoThumbnailPickPayload videoThumbnailPickPayload) |
Pick a thumbnail Pick a thumbnail from the given time code.
|
Video |
VideosApi.update(java.lang.String videoId,
VideoUpdatePayload videoUpdatePayload) |
Update a video Use this endpoint to update the parameters associated with your video.
|
Video |
VideosApi.upload(java.lang.String videoId,
java.io.File file) |
Upload a video To upload a video to the videoId you created.
|
Video |
VideosApi.upload(java.lang.String videoId,
java.io.File file,
UploadProgressListener uploadProgressListener) |
Upload a video To upload a video to the videoId you created.
|
Video |
VideosApi.uploadThumbnail(java.lang.String videoId,
java.io.File file) |
Upload a thumbnail In creating a thumbnail, you may either upload an image, or you can pick a time in the video
to be used as thumbnail.
|
Video |
VideosApi.uploadWithUploadToken(java.lang.String token,
java.io.File file) |
Upload with an upload token When given a token, anyone can upload a file to the URI
`https://ws.api.video/upload?
|
Video |
VideosApi.uploadWithUploadToken(java.lang.String token,
java.io.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?
|
Methods in video.api.client.api.clients that return types with arguments of type Video
| Modifier and Type |
Method |
Description |
ApiResponse<Video> |
VideosApi.createWithHttpInfo(VideoCreatePayload videoCreatePayload) |
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 request
|
ApiResponse<Video> |
VideosApi.getWithHttpInfo(java.lang.String videoId) |
Show a video This call provides the same JSON information provided on video creation.
|
ApiResponse<Video> |
VideosApi.pickThumbnailWithHttpInfo(java.lang.String videoId,
VideoThumbnailPickPayload videoThumbnailPickPayload) |
Pick a thumbnail Pick a thumbnail from the given time code.
|
ApiResponse<Video> |
VideosApi.updateWithHttpInfo(java.lang.String videoId,
VideoUpdatePayload videoUpdatePayload) |
Update a video Use this endpoint to update the parameters associated with your video.
|
ApiResponse<Video> |
VideosApi.uploadThumbnailWithHttpInfo(java.lang.String videoId,
java.io.File file) |
Upload a thumbnail In creating a thumbnail, you may either upload an image, or you can pick a time in the video
to be used as thumbnail.
|
ApiResponse<Video> |
VideosApi.uploadWithHttpInfo(java.lang.String videoId,
java.io.File file) |
Upload a video To upload a video to the videoId you created.
|
ApiResponse<Video> |
VideosApi.uploadWithHttpInfo(java.lang.String videoId,
java.io.File file,
UploadProgressListener uploadProgressListener) |
Upload a video To upload a video to the videoId you created.
|
ApiResponse<Video> |
VideosApi.uploadWithUploadTokenWithHttpInfo(java.lang.String token,
java.io.File file) |
Upload with an upload token When given a token, anyone can upload a file to the URI
`https://ws.api.video/upload?
|
ApiResponse<Video> |
VideosApi.uploadWithUploadTokenWithHttpInfo(java.lang.String token,
java.io.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?
|
-