@bitmovin/api-sdk 1.98.0 → 1.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -238,7 +238,7 @@ var HeaderHandler = /** @class */ (function (_super) {
238
238
  var headers = {
239
239
  'X-Api-Key': apiKey,
240
240
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
241
- 'X-Api-Client-Version': '1.98.0',
241
+ 'X-Api-Client-Version': '1.99.0',
242
242
  'Content-Type': 'application/json'
243
243
  };
244
244
  if (tenantOrgId) {
@@ -14,7 +14,7 @@ export default class VodApi extends BaseAPI {
14
14
  constructor(configuration: Configuration);
15
15
  /**
16
16
  * @summary Create a Simple Encoding VOD Job
17
- * @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created
17
+ * @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created. Check out our [Simple Encoding API Documentation](https://bitmovin.com/docs/encoding/articles/simple-encoding-api) for additional information about the Simple Encoding API.
18
18
  * @throws {BitmovinError}
19
19
  * @memberof VodApi
20
20
  */
@@ -31,7 +31,7 @@ var VodApi = /** @class */ (function (_super) {
31
31
  }
32
32
  /**
33
33
  * @summary Create a Simple Encoding VOD Job
34
- * @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created
34
+ * @param {SimpleEncodingVodJobRequest} simpleEncodingVodJobRequest The Simple Encoding VOD Job to be created. Check out our [Simple Encoding API Documentation](https://bitmovin.com/docs/encoding/articles/simple-encoding-api) for additional information about the Simple Encoding API.
35
35
  * @throws {BitmovinError}
36
36
  * @memberof VodApi
37
37
  */
@@ -18,7 +18,7 @@ export declare class SimpleEncodingVodJobUrlInput {
18
18
  */
19
19
  credentials?: SimpleEncodingVodJobCredentials;
20
20
  /**
21
- * Defines the type of the input file, if no type is set it is assumed that the input file contains at least one video stream and optionally one or multiple audio streams.
21
+ * Defines the type of the input file, if no type is set it is assumed that the input file contains at least one video stream and optionally one or multiple audio streams. Note that when defining video and audio inputs, you can either - add one single input without inputType, in which case that source file must contain a video stream and (if you want audio) one audio stream, or - add one single input with inputType=VIDEO and (if you want audio) one or more inputs with inputType=AUDIO (each containing one audio stream) Other combinations are not valid.
22
22
  * @type {SimpleEncodingVodJobInputType}
23
23
  * @memberof SimpleEncodingVodJobUrlInput
24
24
  */
@@ -5,7 +5,7 @@ import SimpleEncodingVodJobCredentials from './SimpleEncodingVodJobCredentials';
5
5
  */
6
6
  export declare class SimpleEncodingVodJobUrlOutput {
7
7
  /**
8
- * Define a URL pointing to a folder which will be used to upload the encoded assets. The output folder structure used looks the following way: <br><br> `http://host/my-folder` <ul> <li> `/video` <ul> <li>`/h264/{width}x{height}_{bitrate}/` (multiple subfolders containing different output renditions)</li> </ul> </li> <li>`/audio` <ul> <li>`/aac/{language}/` - if language is unique (subfolder containing audio output files)</li> <li>`/aac/{language}_{index}/` - if language is not unique (subfolder containing audio output files)</li> </ul> </li> <li>`/subtitles` (subfolder containing subtitles files)</li> <li>`/captions` (subfolder containing subtitles files)</li> <li>`/sprites` (subfolder containing generated sprites)</li> <li>`/thumbnails` (subfolder containing generated thumbnails)</li> <li>`/index.m3u8` (HLS manifest file) </li> <li>`/stream.mpd` (DASH manifest file) </li> </ul> Currently the following protocols/storages systems are supported: S3, GCS, Azure Blob Storage, Akamai NetStorage. Note that most protocols will require `credentials` to access the asset. Check the description below which ones are applicable. See below how to construct the URLs for the individual protocals/storage systems. --- **S3**: * `s3://<my-bucket>/path/` Authentication can be done via accesskey/secretkey or role-based authentication. Generic S3 is currently NOT supported. **GCS**: * `gcs://<my-bucket>/path/` Authentication can be done via accesskey/secretkey or a service account **Azure Blob Storage (ABS)**: * `https://<account>.blob.core.windows.net/<container>/path/` It is required to provide the Azure key credentials for authentication. **Akamai NetStorage**: * `https://<host>-nsu.akamaihd.net/<CP-code>/path/` It is required to provider username/password credentials for authentication. (required)
8
+ * Define a URL pointing to a folder which will be used to upload the encoded assets. The output folder structure used looks the following way: <br><br> `http://host/my-folder` <ul> <li> `/video` <ul> <li>`/h264/{width}x{height}_{bitrate}/` (multiple subfolders containing different output renditions)</li> </ul> </li> <li>`/audio` <ul> <li>`/aac/{language}/` - if language is unique (subfolder containing audio output files)</li> <li>`/aac/{language}_{index}/` - if language is not unique (subfolder containing audio output files)</li> </ul> </li> <li>`/subtitles` (subfolder containing subtitles files)</li> <li>`/captions` (subfolder containing subtitles files)</li> <li>`/sprites` (subfolder containing generated sprites)</li> <li>`/thumbnails` (subfolder containing generated thumbnails)</li> <li>`/index.m3u8` (HLS manifest file) </li> <li>`/stream.mpd` (DASH manifest file) </li> </ul> Currently the following protocols/storages systems are supported: S3, GCS, Azure Blob Storage, Akamai NetStorage. Note that most protocols will require `credentials` to access the asset. Check the description below which ones are applicable. See below how to construct the URLs for the individual protocals/storage systems. --- **Recommended:** In order to ensure the uniques of the output paths, the use of placeholders in the output's is URL recommended. The following placeholders are supported: {uuid} - will be replace with a random UUID {asset} - will be replaced with the asset file name (only for the input type VIDEO or DEFAULT) Example: * using an `{uuid}` placeholder: The output URL provided `s3://<my-bucket>/{uuid}/path/` will be transformed to `s3://<my-bucket>/<random-uuid-value>/path/`. * using an `{asset}` placeholder: Given the following input URL `s3://my-bucket/path/filename.mp4`, of input type VIDEO or DEFAULT, the following output URL `s3://<my-bucket>/{asset}/path/` will be transformed to `s3://<my-bucket>/filename/path/` Note: the placeholders can be combined or used multiple times in the same URL. --- **S3**: * `s3://<my-bucket>/path/` Authentication can be done via accesskey/secretkey or role-based authentication. Generic S3 is currently NOT supported. **GCS**: * `gcs://<my-bucket>/path/` Authentication can be done via accesskey/secretkey or a service account **Azure Blob Storage (ABS)**: * `https://<account>.blob.core.windows.net/<container>/path/` It is required to provide the Azure key credentials for authentication. **Akamai NetStorage**: * `https://<host>-nsu.akamaihd.net/<CP-code>/path/` It is required to provider username/password credentials for authentication. (required)
9
9
  * @type {string}
10
10
  * @memberof SimpleEncodingVodJobUrlOutput
11
11
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.98.0",
3
+ "version": "1.99.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [