You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**title** | **String** | The title of your new video. |
10
+
**subtitle** | **String** | A subtitle of your video. | [optional]
10
11
**description** | **String** | A brief description of your video. | [optional]
11
12
**source** | **String** | You can either add a video already on the web, by entering the URL of the video, or you can also enter the `videoId` of one of the videos you already have on your api.video acccount, and this will generate a copy of your video. Creating a copy of a video can be especially useful if you want to keep your original video and trim or apply a watermark onto the copy you would create. | [optional]
12
13
**_public** | **Boolean** | Default: True. If set to `false` the video will become private. More information on private videos can be found [here](https://docs.api.video/delivery/video-privacy-access-management) | [optional]
Copy file name to clipboardExpand all lines: docs/VideosApi.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ public class Example {
48
48
49
49
VideoCreationPayload videoCreationPayload =newVideoCreationPayload(); // video to create
50
50
videoCreationPayload.setTitle("Maths video"); // The title of your new video.
51
+
videoCreationPayload.setSubtitle("This is a great subtitle."); // A subtitle of your video.
51
52
videoCreationPayload.setDescription("A video about string theory."); // A brief description of your video.
52
53
videoCreationPayload.setSource("https://www.myvideo.url.com/video.mp4 OR vi4k0jvEUuaTdRAEjQ4JfOyl"); // You can either add a video already on the web, by entering the URL of the video, or you can also enter the `videoId` of one of the videos you already have on your api.video acccount, and this will generate a copy of your video. Creating a copy of a video can be especially useful if you want to keep your original video and trim or apply a watermark onto the copy you would create.
53
54
videoCreationPayload.setPublic(true); // Default: True. If set to `false` the video will become private. More information on private videos can be found [here](https://docs.api.video/delivery/video-privacy-access-management)
0 commit comments