Skip to content

Commit f6edc46

Browse files
yoshi-automationsofisl
authored andcommitted
feat(transcoder): update the API
#### transcoder:v1 The following keys were added: - schemas.Job.properties.fillContentGaps.description - schemas.Job.properties.fillContentGaps.type
1 parent 261272a commit f6edc46

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

discovery/transcoder-v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
}
386386
}
387387
},
388-
"revision": "20250219",
388+
"revision": "20250630",
389389
"rootUrl": "https://transcoder.googleapis.com/",
390390
"schemas": {
391391
"AdBreak": {
@@ -1200,6 +1200,10 @@
12001200
"description": "Output only. An error object that describes the reason for the failure. This property is always present when ProcessingState is `FAILED`.",
12011201
"readOnly": true
12021202
},
1203+
"fillContentGaps": {
1204+
"description": "Optional. Insert silence and duplicate frames when timestamp gaps are detected in a given stream.",
1205+
"type": "boolean"
1206+
},
12031207
"inputUri": {
12041208
"description": "Input only. Specify the `input_uri` to populate empty `uri` fields in each element of `Job.config.inputs` or `JobTemplate.config.inputs` when using template. URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). See [Supported input and output formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).",
12051209
"type": "string"

src/apis/transcoder/v1.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,10 @@ export namespace transcoder_v1 {
768768
* Output only. An error object that describes the reason for the failure. This property is always present when ProcessingState is `FAILED`.
769769
*/
770770
error?: Schema$Status;
771+
/**
772+
* Optional. Insert silence and duplicate frames when timestamp gaps are detected in a given stream.
773+
*/
774+
fillContentGaps?: boolean | null;
771775
/**
772776
* Input only. Specify the `input_uri` to populate empty `uri` fields in each element of `Job.config.inputs` or `JobTemplate.config.inputs` when using template. URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). See [Supported input and output formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
773777
*/
@@ -1383,6 +1387,7 @@ export namespace transcoder_v1 {
13831387
* // "createTime": "my_createTime",
13841388
* // "endTime": "my_endTime",
13851389
* // "error": {},
1390+
* // "fillContentGaps": false,
13861391
* // "inputUri": "my_inputUri",
13871392
* // "labels": {},
13881393
* // "mode": "my_mode",
@@ -1405,6 +1410,7 @@ export namespace transcoder_v1 {
14051410
* // "createTime": "my_createTime",
14061411
* // "endTime": "my_endTime",
14071412
* // "error": {},
1413+
* // "fillContentGaps": false,
14081414
* // "inputUri": "my_inputUri",
14091415
* // "labels": {},
14101416
* // "mode": "my_mode",
@@ -1687,6 +1693,7 @@ export namespace transcoder_v1 {
16871693
* // "createTime": "my_createTime",
16881694
* // "endTime": "my_endTime",
16891695
* // "error": {},
1696+
* // "fillContentGaps": false,
16901697
* // "inputUri": "my_inputUri",
16911698
* // "labels": {},
16921699
* // "mode": "my_mode",

0 commit comments

Comments
 (0)