Skip to content

Commit

Permalink
feat(all): add watermarks & video clips
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Jan 13, 2022
1 parent 0a25024 commit c9436c6
Show file tree
Hide file tree
Showing 16 changed files with 2,209 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All changes to this project will be documented in this file.

## [1.2.0] - 2022-01-07
- Add watermark endpoints
- Add video clips
- Fix tags[] query parameter format of GET /videos
- Correctly distinguish between "undefined", "defined" and "null" values if the playerId parameter of PATCH /videos/{videoId}

## [1.1.0] - 2021-12-06
- Add `name` attribute in player themes

Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- [RawStatistics](#rawstatistics)
- [UploadTokens](#uploadtokens)
- [Videos](#videos)
- [Watermarks](#watermarks)
- [Webhooks](#webhooks)
- [Models](#models)
- [Have you gotten use from this API client?](#have-you-gotten-use-from-this-api-client-)
Expand Down Expand Up @@ -259,6 +260,24 @@ Method | HTTP request | Description
[**UploadThumbnail**](docs/Videos.md#UploadThumbnail) | **Post** /videos/{videoId}/thumbnail | Upload a thumbnail


### Watermarks


#### Retrieve an instance of the Watermarks API:
```golang
client := apivideosdk.ClientBuilder("API_VIDEO_KEY").Build()
watermarksApi := client.Watermarks
```

#### Endpoints

Method | HTTP request | Description
------------- | ------------- | -------------
[**Delete**](docs/Watermarks.md#Delete) | **Delete** /watermarks/{watermarkId} | Delete a watermark
[**List**](docs/Watermarks.md#List) | **Get** /watermarks | List all watermarks
[**Upload**](docs/Watermarks.md#Upload) | **Post** /watermarks | Upload a watermark


### Webhooks


Expand Down Expand Up @@ -323,6 +342,7 @@ Method | HTTP request | Description
- [UploadToken](docs/UploadToken.md)
- [Video](docs/Video.md)
- [VideoAssets](docs/VideoAssets.md)
- [VideoClip](docs/VideoClip.md)
- [VideoCreationPayload](docs/VideoCreationPayload.md)
- [VideoSession](docs/VideoSession.md)
- [VideoSessionClient](docs/VideoSessionClient.md)
Expand All @@ -340,7 +360,10 @@ Method | HTTP request | Description
- [VideoStatusIngest](docs/VideoStatusIngest.md)
- [VideoThumbnailPickPayload](docs/VideoThumbnailPickPayload.md)
- [VideoUpdatePayload](docs/VideoUpdatePayload.md)
- [VideoWatermark](docs/VideoWatermark.md)
- [VideosListResponse](docs/VideosListResponse.md)
- [Watermark](docs/Watermark.md)
- [WatermarksListResponse](docs/WatermarksListResponse.md)
- [Webhook](docs/Webhook.md)
- [WebhooksCreationPayload](docs/WebhooksCreationPayload.md)
- [WebhooksListResponse](docs/WebhooksListResponse.md)
Expand Down
Loading

0 comments on commit c9436c6

Please sign in to comment.