Skip to content

Commit

Permalink
Fix indirect URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
szekelyzol authored Oct 5, 2023
1 parent 4746d3e commit 3387793
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion apivideo/api/captions_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def upload(
):
"""Upload a caption # noqa: E501
Upload a VTT file to add captions to your video. More information can be found [here](https://docs.api.video/reference/captions) # noqa: E501
Upload a VTT file to add captions to your video. More information can be found [here](https://docs.api.video/vod/add-captions) # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down
2 changes: 1 addition & 1 deletion apivideo/api/chapters_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def upload(
):
"""Upload a chapter # noqa: E501
Upload a VTT file to add chapters to your video. Chapters help break the video into sections. Read our [tutorial](https://api.video/blog/tutorials/adding-chapters-to-your-videos) for more details. # noqa: E501
Upload a VTT file to add chapters to your video. Chapters help break the video into sections. Read our [tutorial](https://api.video/blog/tutorials/adding-chapters-to-your-videos/) for more details. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down
2 changes: 1 addition & 1 deletion apivideo/api/upload_tokens_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def create_token(
):
"""Generate an upload token # noqa: E501
Generates an upload token that can be used to replace the API Key. More information can be found [here](https://docs.api.video/reference/upload-tokens) # noqa: E501
Generates an upload token that can be used to replace the API Key. More information can be found [here](https://docs.api.video/vod/delegated-upload-tokens) # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down
4 changes: 2 additions & 2 deletions apivideo/api/videos_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def create(
):
"""Create a video object # noqa: E501
Creates a video object. More information on video objects can be found [here](https://docs.api.video/reference/videos-1). # noqa: E501
Creates a video object. More information on video objects can be found [here](https://docs.api.video/reference/api/Videos). # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -1187,7 +1187,7 @@ def list(
Keyword Args:
title (str): The title of a specific video you want to find. The search will match exactly to what term you provide and return any videos that contain the same term as part of their titles.. [optional]
tags ([str]): A tag is a category you create and apply to videos. You can search for videos with particular tags by listing one or more here. Only videos that have all the tags you list will be returned.. [optional]
metadata ({str: (str,)}): Videos can be tagged with metadata tags in key:value pairs. You can search for videos with specific key value pairs using this parameter. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata) allows you to define a key that allows any value pair.. [optional]
metadata ({str: (str,)}): Videos can be tagged with metadata tags in key:value pairs. You can search for videos with specific key value pairs using this parameter. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata/) allows you to define a key that allows any value pair.. [optional]
description (str): Retrieve video objects by `description`.. [optional]
live_stream_id (str): Retrieve video objects that were recorded from a live stream by `liveStreamId`.. [optional]
sort_by (str): Use this parameter to sort videos by the their created time, published time, updated time, or by title.. [optional]
Expand Down
2 changes: 1 addition & 1 deletion apivideo/model/live_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def __init__(self, live_stream_id, restreams, *args, **kwargs): # noqa: E501
_visited_composed_classes = (Animal,)
name (str): The name of your live stream.. [optional] # noqa: E501
stream_key (str): The unique, private stream key that you use to begin streaming.. [optional] # noqa: E501
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos).. [optional] # noqa: E501
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management).. [optional] # noqa: E501
assets (LiveStreamAssets): [optional] # noqa: E501
player_id (str): The unique identifier for the player.. [optional] # noqa: E501
broadcasting (bool): Whether or not you are broadcasting the live video you recorded for others to see. True means you are broadcasting to viewers, false means you are not.. [optional] # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion apivideo/model/live_stream_creation_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __init__(self, name, *args, **kwargs): # noqa: E501
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos).. [optional] # noqa: E501
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management).. [optional] # noqa: E501
player_id (str): The unique identifier for the player.. [optional] # noqa: E501
restreams ([RestreamsRequestObject]): Use this parameter to add, edit, or remove RTMP services where you want to restream a live stream. The list can only contain up to 5 destinations.. [optional] # noqa: E501
"""
Expand Down
2 changes: 1 addition & 1 deletion apivideo/model/live_stream_update_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
name (str): The name you want to use for your live stream.. [optional] # noqa: E501
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos).. [optional] # noqa: E501
public (bool): Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management).. [optional] # noqa: E501
player_id (str): The unique ID for the player associated with a live stream that you want to update.. [optional] # noqa: E501
restreams ([RestreamsRequestObject]): Use this parameter to add, edit, or remove RTMP services where you want to restream a live stream. The list can only contain up to 5 destinations. This operation updates all restream destinations in the same request. If you do not want to modify an existing restream destination, you need to include it in your request, otherwise it is removed.. [optional] # noqa: E501
"""
Expand Down
4 changes: 2 additions & 2 deletions apivideo/model/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ def __init__(self, video_id, *args, **kwargs): # noqa: E501
published_at (datetime): The date and time the API created the video. Date and time are provided using ISO-8601 UTC format.. [optional] # noqa: E501
updated_at (datetime): The date and time the video was updated. Date and time are provided using ISO-8601 UTC format.. [optional] # noqa: E501
tags ([str]): One array of tags (each tag is a string) in order to categorize a video. Tags may include spaces. . [optional] # noqa: E501
metadata ([Metadata]): Metadata you can use to categorise and filter videos. Metadata is a list of dictionaries, where each dictionary represents a key value pair for categorising a video. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata) allows you to define a key that allows any value pair. . [optional] # noqa: E501
metadata ([Metadata]): Metadata you can use to categorise and filter videos. Metadata is a list of dictionaries, where each dictionary represents a key value pair for categorising a video. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata/) allows you to define a key that allows any value pair. . [optional] # noqa: E501
source (VideoSource): [optional] # noqa: E501
assets (VideoAssets): [optional] # noqa: E501
player_id (str): The id of the player that will be applied on the video. . [optional] # noqa: E501
public (bool): Defines if the content is publicly reachable or if a unique token is needed for each play session. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos). . [optional] # noqa: E501
public (bool): Defines if the content is publicly reachable or if a unique token is needed for each play session. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos/). . [optional] # noqa: E501
panoramic (bool): Defines if video is panoramic. . [optional] # noqa: E501
mp4_support (bool): This lets you know whether mp4 is supported. If enabled, an mp4 URL will be provided in the response for the video. . [optional] # noqa: E501
"""
Expand Down
4 changes: 2 additions & 2 deletions apivideo/model/video_creation_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ def __init__(self, title, *args, **kwargs): # noqa: E501
_visited_composed_classes = (Animal,)
description (str): A brief description of your video.. [optional] # noqa: E501
source (str): 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] # noqa: E501
public (bool): Default: True. If set to `false` the video will become private. More information on private videos can be found [here](https://docs.api.video/docs/private-videos). [optional] if omitted the server will use the default value of True # noqa: E501
public (bool): 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-analytics/video-privacy-access-management). [optional] if omitted the server will use the default value of True # noqa: E501
panoramic (bool): Indicates if your video is a 360/immersive video.. [optional] if omitted the server will use the default value of False # noqa: E501
mp4_support (bool): Enables mp4 version in addition to streamed version.. [optional] if omitted the server will use the default value of True # noqa: E501
player_id (str): The unique identification number for your video player.. [optional] # noqa: E501
tags ([str]): A list of tags you want to use to describe your video.. [optional] # noqa: E501
metadata ([Metadata]): A list of key value pairs that you use to provide metadata for your video. These pairs can be made dynamic, allowing you to segment your audience. Read more on [dynamic metadata](https://api.video/blog/endpoints/dynamic-metadata).. [optional] # noqa: E501
metadata ([Metadata]): A list of key value pairs that you use to provide metadata for your video. These pairs can be made dynamic, allowing you to segment your audience. Read more on [dynamic metadata](https://api.video/blog/endpoints/dynamic-metadata/).. [optional] # noqa: E501
clip (VideoClip): [optional] # noqa: E501
watermark (VideoWatermark): [optional] # noqa: E501
"""
Expand Down
4 changes: 2 additions & 2 deletions apivideo/model/video_update_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ def __init__(self, *args, **kwargs): # noqa: E501
player_id (str): The unique ID for the player you want to associate with your video.. [optional] # noqa: E501
title (str): The title you want to use for your video.. [optional] # noqa: E501
description (str): A brief description of the video.. [optional] # noqa: E501
public (bool): Whether the video is publicly available or not. False means it is set to private. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos).. [optional] # noqa: E501
public (bool): Whether the video is publicly available or not. False means it is set to private. Default is true. Tutorials on [private videos](https://api.video/blog/endpoints/private-videos/).. [optional] # noqa: E501
panoramic (bool): Whether the video is a 360 degree or immersive video.. [optional] # noqa: E501
mp4_support (bool): Whether the player supports the mp4 format.. [optional] # noqa: E501
tags ([str]): A list of terms or words you want to tag the video with. Make sure the list includes all the tags you want as whatever you send in this list will overwrite the existing list for the video.. [optional] # noqa: E501
metadata ([Metadata]): A list (array) of dictionaries where each dictionary contains a key value pair that describes the video. As with tags, you must send the complete list of metadata you want as whatever you send here will overwrite the existing metadata for the video. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata) allows you to define a key that allows any value pair.. [optional] # noqa: E501
metadata ([Metadata]): A list (array) of dictionaries where each dictionary contains a key value pair that describes the video. As with tags, you must send the complete list of metadata you want as whatever you send here will overwrite the existing metadata for the video. [Dynamic Metadata](https://api.video/blog/endpoints/dynamic-metadata/) allows you to define a key that allows any value pair.. [optional] # noqa: E501
"""

_check_type = kwargs.pop('_check_type', True)
Expand Down
2 changes: 1 addition & 1 deletion docs/CaptionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Method | HTTP request | Description
Upload a caption

Upload a VTT file to add captions to your video. More information can be found [here](https://docs.api.video/reference/captions)
Upload a VTT file to add captions to your video. More information can be found [here](https://docs.api.video/vod/add-captions)

### Example

Expand Down
2 changes: 1 addition & 1 deletion docs/ChaptersApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Method | HTTP request | Description
Upload a chapter

Upload a VTT file to add chapters to your video. Chapters help break the video into sections. Read our [tutorial](https://api.video/blog/tutorials/adding-chapters-to-your-videos) for more details.
Upload a VTT file to add chapters to your video. Chapters help break the video into sections. Read our [tutorial](https://api.video/blog/tutorials/adding-chapters-to-your-videos/) for more details.

### Example

Expand Down
2 changes: 1 addition & 1 deletion docs/LiveStream.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**restreams** | [**[RestreamsResponseObject]**](RestreamsResponseObject.md) | Returns the list of RTMP restream destinations. |
**name** | **str** | The name of your live stream. | [optional]
**stream_key** | **str** | The unique, private stream key that you use to begin streaming. | [optional]
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos). | [optional]
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management). | [optional]
**assets** | [**LiveStreamAssets**](LiveStreamAssets.md) | | [optional]
**player_id** | **str** | The unique identifier for the player. | [optional]
**broadcasting** | **bool** | Whether or not you are broadcasting the live video you recorded for others to see. True means you are broadcasting to viewers, false means you are not. | [optional]
Expand Down
2 changes: 1 addition & 1 deletion docs/LiveStreamCreationPayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Add a name for your live stream here. |
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos). | [optional]
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management). | [optional]
**player_id** | **str** | The unique identifier for the player. | [optional]
**restreams** | [**[RestreamsRequestObject]**](RestreamsRequestObject.md) | Use this parameter to add, edit, or remove RTMP services where you want to restream a live stream. The list can only contain up to 5 destinations. | [optional]

Expand Down
2 changes: 1 addition & 1 deletion docs/LiveStreamUpdatePayload.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | The name you want to use for your live stream. | [optional]
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/docs/private-videos). | [optional]
**public** | **bool** | Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view. Learn more about the Private Video feature [here](https://docs.api.video/delivery-analytics/video-privacy-access-management). | [optional]
**player_id** | **str** | The unique ID for the player associated with a live stream that you want to update. | [optional]
**restreams** | [**[RestreamsRequestObject]**](RestreamsRequestObject.md) | Use this parameter to add, edit, or remove RTMP services where you want to restream a live stream. The list can only contain up to 5 destinations. This operation updates all restream destinations in the same request. If you do not want to modify an existing restream destination, you need to include it in your request, otherwise it is removed. | [optional]

Expand Down
2 changes: 1 addition & 1 deletion docs/UploadTokensApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Method | HTTP request | Description
Generate an upload token

Generates an upload token that can be used to replace the API Key. More information can be found [here](https://docs.api.video/reference/upload-tokens)
Generates an upload token that can be used to replace the API Key. More information can be found [here](https://docs.api.video/vod/delegated-upload-tokens)

### Example

Expand Down
Loading

0 comments on commit 3387793

Please sign in to comment.