resources.proto 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.video.transcoder.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/protobuf/duration.proto";
  19. import "google/protobuf/timestamp.proto";
  20. import "google/rpc/status.proto";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/video/transcoder/v1;transcoder";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "ResourcesProto";
  24. option java_package = "com.google.cloud.video.transcoder.v1";
  25. // Transcoding job resource.
  26. message Job {
  27. option (google.api.resource) = {
  28. type: "transcoder.googleapis.com/Job"
  29. pattern: "projects/{project}/locations/{location}/jobs/{job}"
  30. };
  31. // The current state of the job.
  32. enum ProcessingState {
  33. // The processing state is not specified.
  34. PROCESSING_STATE_UNSPECIFIED = 0;
  35. // The job is enqueued and will be picked up for processing soon.
  36. PENDING = 1;
  37. // The job is being processed.
  38. RUNNING = 2;
  39. // The job has been completed successfully.
  40. SUCCEEDED = 3;
  41. // The job has failed. For additional information, see `failure_reason` and
  42. // `failure_details`
  43. FAILED = 4;
  44. }
  45. // The resource name of the job.
  46. // Format: `projects/{project_number}/locations/{location}/jobs/{job}`
  47. string name = 1;
  48. // Input only. Specify the `input_uri` to populate empty `uri` fields in each element of
  49. // `Job.config.inputs` or `JobTemplate.config.inputs` when using template.
  50. // URI of the media. Input files must be at least 5 seconds in duration and
  51. // stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). See
  52. // [Supported input and output
  53. // formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
  54. string input_uri = 2 [(google.api.field_behavior) = INPUT_ONLY];
  55. // Input only. Specify the `output_uri` to populate an empty `Job.config.output.uri` or
  56. // `JobTemplate.config.output.uri` when using template.
  57. // URI for the output file(s). For example, `gs://my-bucket/outputs/`. See
  58. // [Supported input and output
  59. // formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
  60. string output_uri = 3 [(google.api.field_behavior) = INPUT_ONLY];
  61. // Specify the `job_config` for the transcoding job. If you don't specify the
  62. // `job_config`, the API selects `templateId`; this template ID is set to
  63. // `preset/web-hd` by default. When you use a `template_id` to create a job,
  64. // the `Job.config` is populated by the `JobTemplate.config`.<br>
  65. oneof job_config {
  66. // Input only. Specify the `template_id` to use for populating `Job.config`. The default
  67. // is `preset/web-hd`.
  68. //
  69. // Preset Transcoder templates:
  70. // - `preset/{preset_id}`
  71. //
  72. // - User defined JobTemplate:
  73. // `{job_template_id}`
  74. string template_id = 4 [(google.api.field_behavior) = INPUT_ONLY];
  75. // The configuration for this job.
  76. JobConfig config = 5;
  77. }
  78. // Output only. The current state of the job.
  79. ProcessingState state = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  80. // Output only. The time the job was created.
  81. google.protobuf.Timestamp create_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  82. // Output only. The time the transcoding started.
  83. google.protobuf.Timestamp start_time = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
  84. // Output only. The time the transcoding finished.
  85. google.protobuf.Timestamp end_time = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
  86. // Job time to live value in days, which will be effective after job
  87. // completion. Job should be deleted automatically after the given TTL. Enter
  88. // a value between 1 and 90. The default is 30.
  89. int32 ttl_after_completion_days = 15;
  90. // The labels associated with this job. You can use these to organize and
  91. // group your jobs.
  92. map<string, string> labels = 16;
  93. // Output only. An error object that describes the reason for the failure.
  94. // This property is always present when `state` is `FAILED`.
  95. google.rpc.Status error = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
  96. }
  97. // Transcoding job template resource.
  98. message JobTemplate {
  99. option (google.api.resource) = {
  100. type: "transcoder.googleapis.com/JobTemplate"
  101. pattern: "projects/{project}/locations/{location}/jobTemplates/{job_template}"
  102. };
  103. // The resource name of the job template.
  104. // Format:
  105. // `projects/{project_number}/locations/{location}/jobTemplates/{job_template}`
  106. string name = 1;
  107. // The configuration for this template.
  108. JobConfig config = 2;
  109. // The labels associated with this job template. You can use these to organize
  110. // and group your job templates.
  111. map<string, string> labels = 3;
  112. }
  113. // Job configuration
  114. message JobConfig {
  115. // List of input assets stored in Cloud Storage.
  116. repeated Input inputs = 1;
  117. // List of `Edit atom`s. Defines the ultimate timeline of the resulting
  118. // file or manifest.
  119. repeated EditAtom edit_list = 2;
  120. // List of elementary streams.
  121. repeated ElementaryStream elementary_streams = 3;
  122. // List of multiplexing settings for output streams.
  123. repeated MuxStream mux_streams = 4;
  124. // List of output manifests.
  125. repeated Manifest manifests = 5;
  126. // Output configuration.
  127. Output output = 6;
  128. // List of ad breaks. Specifies where to insert ad break tags in the output
  129. // manifests.
  130. repeated AdBreak ad_breaks = 7;
  131. // Destination on Pub/Sub.
  132. PubsubDestination pubsub_destination = 8;
  133. // List of output sprite sheets.
  134. // Spritesheets require at least one VideoStream in the Jobconfig.
  135. repeated SpriteSheet sprite_sheets = 9;
  136. // List of overlays on the output video, in descending Z-order.
  137. repeated Overlay overlays = 10;
  138. }
  139. // Input asset.
  140. message Input {
  141. // A unique key for this input. Must be specified when using advanced
  142. // mapping and edit lists.
  143. string key = 1;
  144. // URI of the media. Input files must be at least 5 seconds in duration and
  145. // stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`).
  146. // If empty, the value is populated from `Job.input_uri`. See
  147. // [Supported input and output
  148. // formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
  149. string uri = 2;
  150. // Preprocessing configurations.
  151. PreprocessingConfig preprocessing_config = 3;
  152. }
  153. // Location of output file(s) in a Cloud Storage bucket.
  154. message Output {
  155. // URI for the output file(s). For example, `gs://my-bucket/outputs/`.
  156. // If empty, the value is populated from `Job.output_uri`. See
  157. // [Supported input and output
  158. // formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats).
  159. string uri = 1;
  160. }
  161. // Edit atom.
  162. message EditAtom {
  163. // A unique key for this atom. Must be specified when using advanced
  164. // mapping.
  165. string key = 1;
  166. // List of `Input.key`s identifying files that should be used in this atom.
  167. // The listed `inputs` must have the same timeline.
  168. repeated string inputs = 2;
  169. // End time in seconds for the atom, relative to the input file timeline.
  170. // When `end_time_offset` is not specified, the `inputs` are used until
  171. // the end of the atom.
  172. google.protobuf.Duration end_time_offset = 3;
  173. // Start time in seconds for the atom, relative to the input file timeline.
  174. // The default is `0s`.
  175. google.protobuf.Duration start_time_offset = 4;
  176. }
  177. // Ad break.
  178. message AdBreak {
  179. // Start time in seconds for the ad break, relative to the output file
  180. // timeline. The default is `0s`.
  181. google.protobuf.Duration start_time_offset = 1;
  182. }
  183. // Encoding of an input file such as an audio, video, or text track.
  184. // Elementary streams must be packaged before
  185. // mapping and sharing between different output formats.
  186. message ElementaryStream {
  187. // A unique key for this elementary stream.
  188. string key = 4;
  189. // Encoding of an audio, video, or text track.
  190. oneof elementary_stream {
  191. // Encoding of a video stream.
  192. VideoStream video_stream = 1;
  193. // Encoding of an audio stream.
  194. AudioStream audio_stream = 2;
  195. // Encoding of a text stream. For example, closed captions or subtitles.
  196. TextStream text_stream = 3;
  197. }
  198. }
  199. // Multiplexing settings for output stream.
  200. message MuxStream {
  201. // A unique key for this multiplexed stream. HLS media manifests will be
  202. // named `MuxStream.key` with the `.m3u8` extension suffix.
  203. string key = 1;
  204. // The name of the generated file. The default is `MuxStream.key` with the
  205. // extension suffix corresponding to the `MuxStream.container`.
  206. //
  207. // Individual segments also have an incremental 10-digit zero-padded suffix
  208. // starting from 0 before the extension, such as `mux_stream0000000123.ts`.
  209. string file_name = 2;
  210. // The container format. The default is `mp4`
  211. //
  212. // Supported container formats:
  213. //
  214. // - `ts`
  215. // - `fmp4`- the corresponding file extension is `.m4s`
  216. // - `mp4`
  217. // - `vtt`
  218. //
  219. // See also:
  220. // [Supported input and output
  221. // formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats)
  222. string container = 3;
  223. // List of `ElementaryStream.key`s multiplexed in this stream.
  224. repeated string elementary_streams = 4;
  225. // Segment settings for `ts`, `fmp4` and `vtt`.
  226. SegmentSettings segment_settings = 5;
  227. }
  228. // Manifest configuration.
  229. message Manifest {
  230. // The manifest type can be either `HLS` or `DASH`.
  231. enum ManifestType {
  232. // The manifest type is not specified.
  233. MANIFEST_TYPE_UNSPECIFIED = 0;
  234. // Create `HLS` manifest. The corresponding file extension is `.m3u8`.
  235. HLS = 1;
  236. // Create `DASH` manifest. The corresponding file extension is `.mpd`.
  237. DASH = 2;
  238. }
  239. // The name of the generated file. The default is `manifest` with the
  240. // extension suffix corresponding to the `Manifest.type`.
  241. string file_name = 1;
  242. // Required. Type of the manifest, can be `HLS` or `DASH`.
  243. ManifestType type = 2 [(google.api.field_behavior) = REQUIRED];
  244. // Required. List of user given `MuxStream.key`s that should appear in this manifest.
  245. //
  246. // When `Manifest.type` is `HLS`, a media manifest with name `MuxStream.key`
  247. // and `.m3u8` extension is generated for each element of the
  248. // `Manifest.mux_streams`.
  249. repeated string mux_streams = 3 [(google.api.field_behavior) = REQUIRED];
  250. }
  251. // A Pub/Sub destination.
  252. message PubsubDestination {
  253. // The name of the Pub/Sub topic to publish job completion notification
  254. // to. For example: `projects/{project}/topics/{topic}`.
  255. string topic = 1;
  256. }
  257. // Sprite sheet configuration.
  258. message SpriteSheet {
  259. // Format type. The default is `jpeg`.
  260. //
  261. // Supported formats:
  262. //
  263. // - `jpeg`
  264. string format = 1;
  265. // Required. File name prefix for the generated sprite sheets.
  266. //
  267. // Each sprite sheet has an incremental 10-digit zero-padded suffix starting
  268. // from 0 before the extension, such as `sprite_sheet0000000123.jpeg`.
  269. string file_prefix = 2 [(google.api.field_behavior) = REQUIRED];
  270. // Required. The width of sprite in pixels. Must be an even integer. To preserve the
  271. // source aspect ratio, set the [SpriteSheet.sprite_width_pixels][google.cloud.video.transcoder.v1.SpriteSheet.sprite_width_pixels] field or
  272. // the [SpriteSheet.sprite_height_pixels][google.cloud.video.transcoder.v1.SpriteSheet.sprite_height_pixels] field, but not both (the API will
  273. // automatically calculate the missing field).
  274. //
  275. // For portrait videos that contain horizontal ASR and rotation metadata,
  276. // provide the width, in pixels, per the horizontal ASR. The API calculates
  277. // the height per the horizontal ASR. The API detects any rotation metadata
  278. // and swaps the requested height and width for the output.
  279. int32 sprite_width_pixels = 3 [(google.api.field_behavior) = REQUIRED];
  280. // Required. The height of sprite in pixels. Must be an even integer. To preserve the
  281. // source aspect ratio, set the [SpriteSheet.sprite_height_pixels][google.cloud.video.transcoder.v1.SpriteSheet.sprite_height_pixels] field or
  282. // the [SpriteSheet.sprite_width_pixels][google.cloud.video.transcoder.v1.SpriteSheet.sprite_width_pixels] field, but not both (the API will
  283. // automatically calculate the missing field).
  284. //
  285. // For portrait videos that contain horizontal ASR and rotation metadata,
  286. // provide the height, in pixels, per the horizontal ASR. The API calculates
  287. // the width per the horizontal ASR. The API detects any rotation metadata
  288. // and swaps the requested height and width for the output.
  289. int32 sprite_height_pixels = 4 [(google.api.field_behavior) = REQUIRED];
  290. // The maximum number of sprites per row in a sprite sheet. The default is 0,
  291. // which indicates no maximum limit.
  292. int32 column_count = 5;
  293. // The maximum number of rows per sprite sheet. When the sprite sheet is full,
  294. // a new sprite sheet is created. The default is 0, which indicates no maximum
  295. // limit.
  296. int32 row_count = 6;
  297. // Start time in seconds, relative to the output file timeline. Determines the
  298. // first sprite to pick. The default is `0s`.
  299. google.protobuf.Duration start_time_offset = 7;
  300. // End time in seconds, relative to the output file timeline. When
  301. // `end_time_offset` is not specified, the sprites are generated until the end
  302. // of the output file.
  303. google.protobuf.Duration end_time_offset = 8;
  304. // Specify either total number of sprites or interval to create sprites.
  305. oneof extraction_strategy {
  306. // Total number of sprites. Create the specified number of sprites
  307. // distributed evenly across the timeline of the output media. The default
  308. // is 100.
  309. int32 total_count = 9;
  310. // Starting from `0s`, create sprites at regular intervals. Specify the
  311. // interval value in seconds.
  312. google.protobuf.Duration interval = 10;
  313. }
  314. // The quality of the generated sprite sheet. Enter a value between 1
  315. // and 100, where 1 is the lowest quality and 100 is the highest quality.
  316. // The default is 100. A high quality value corresponds to a low image data
  317. // compression ratio.
  318. int32 quality = 11;
  319. }
  320. // Overlay configuration.
  321. message Overlay {
  322. // 2D normalized coordinates. Default: `{0.0, 0.0}`
  323. message NormalizedCoordinate {
  324. // Normalized x coordinate.
  325. double x = 1;
  326. // Normalized y coordinate.
  327. double y = 2;
  328. }
  329. // Overlaid jpeg image.
  330. message Image {
  331. // Required. URI of the JPEG image in Cloud Storage. For example,
  332. // `gs://bucket/inputs/image.jpeg`. JPEG is the only supported image type.
  333. string uri = 1 [(google.api.field_behavior) = REQUIRED];
  334. // Normalized image resolution, based on output video resolution. Valid
  335. // values: `0.0`–`1.0`. To respect the original image aspect ratio, set
  336. // either `x` or `y` to `0.0`. To use the original image resolution, set
  337. // both `x` and `y` to `0.0`.
  338. NormalizedCoordinate resolution = 2;
  339. // Target image opacity. Valid values are from `1.0` (solid, default) to
  340. // `0.0` (transparent), exclusive. Set this to a value greater than `0.0`.
  341. double alpha = 3;
  342. }
  343. // Display static overlay object.
  344. message AnimationStatic {
  345. // Normalized coordinates based on output video resolution. Valid
  346. // values: `0.0`–`1.0`. `xy` is the upper-left coordinate of the overlay
  347. // object. For example, use the x and y coordinates {0,0} to position the
  348. // top-left corner of the overlay animation in the top-left corner of the
  349. // output video.
  350. NormalizedCoordinate xy = 1;
  351. // The time to start displaying the overlay object, in seconds. Default: 0
  352. google.protobuf.Duration start_time_offset = 2;
  353. }
  354. // Fade type for the overlay: `FADE_IN` or `FADE_OUT`.
  355. enum FadeType {
  356. // The fade type is not specified.
  357. FADE_TYPE_UNSPECIFIED = 0;
  358. // Fade the overlay object into view.
  359. FADE_IN = 1;
  360. // Fade the overlay object out of view.
  361. FADE_OUT = 2;
  362. }
  363. // Display overlay object with fade animation.
  364. message AnimationFade {
  365. // Required. Type of fade animation: `FADE_IN` or `FADE_OUT`.
  366. FadeType fade_type = 1 [(google.api.field_behavior) = REQUIRED];
  367. // Normalized coordinates based on output video resolution. Valid
  368. // values: `0.0`–`1.0`. `xy` is the upper-left coordinate of the overlay
  369. // object. For example, use the x and y coordinates {0,0} to position the
  370. // top-left corner of the overlay animation in the top-left corner of the
  371. // output video.
  372. NormalizedCoordinate xy = 2;
  373. // The time to start the fade animation, in seconds. Default: 0
  374. google.protobuf.Duration start_time_offset = 3;
  375. // The time to end the fade animation, in seconds. Default:
  376. // `start_time_offset` + 1s
  377. google.protobuf.Duration end_time_offset = 4;
  378. }
  379. // End previous overlay animation from the video. Without AnimationEnd, the
  380. // overlay object will keep the state of previous animation until the end of
  381. // the video.
  382. message AnimationEnd {
  383. // The time to end overlay object, in seconds. Default: 0
  384. google.protobuf.Duration start_time_offset = 1;
  385. }
  386. // Animation types.
  387. message Animation {
  388. // Animations can be static or fade, or they can end the previous animation.
  389. oneof animation_type {
  390. // Display static overlay object.
  391. AnimationStatic animation_static = 1;
  392. // Display overlay object with fade animation.
  393. AnimationFade animation_fade = 2;
  394. // End previous animation.
  395. AnimationEnd animation_end = 3;
  396. }
  397. }
  398. // Image overlay.
  399. Image image = 1;
  400. // List of Animations. The list should be chronological, without any time
  401. // overlap.
  402. repeated Animation animations = 2;
  403. }
  404. // Preprocessing configurations.
  405. message PreprocessingConfig {
  406. // Color preprocessing configuration.
  407. //
  408. // **Note:** This configuration is not supported.
  409. message Color {
  410. // Control color saturation of the video. Enter a value between -1 and 1,
  411. // where -1 is fully desaturated and 1 is maximum saturation. 0 is no
  412. // change. The default is 0.
  413. double saturation = 1;
  414. // Control black and white contrast of the video. Enter a value between -1
  415. // and 1, where -1 is minimum contrast and 1 is maximum contrast. 0 is no
  416. // change. The default is 0.
  417. double contrast = 2;
  418. // Control brightness of the video. Enter a value between -1 and 1, where -1
  419. // is minimum brightness and 1 is maximum brightness. 0 is no change. The
  420. // default is 0.
  421. double brightness = 3;
  422. }
  423. // Denoise preprocessing configuration.
  424. //
  425. // **Note:** This configuration is not supported.
  426. message Denoise {
  427. // Set strength of the denoise. Enter a value between 0 and 1. The higher
  428. // the value, the smoother the image. 0 is no denoising. The default is 0.
  429. double strength = 1;
  430. // Set the denoiser mode. The default is `standard`.
  431. //
  432. // Supported denoiser modes:
  433. //
  434. // - `standard`
  435. // - `grain`
  436. string tune = 2;
  437. }
  438. // Deblock preprocessing configuration.
  439. //
  440. // **Note:** This configuration is not supported.
  441. message Deblock {
  442. // Set strength of the deblocker. Enter a value between 0 and 1. The higher
  443. // the value, the stronger the block removal. 0 is no deblocking. The
  444. // default is 0.
  445. double strength = 1;
  446. // Enable deblocker. The default is `false`.
  447. bool enabled = 2;
  448. }
  449. // Audio preprocessing configuration.
  450. message Audio {
  451. // Specify audio loudness normalization in loudness units relative to full
  452. // scale (LUFS). Enter a value between -24 and 0 (the default), where:
  453. //
  454. // * -24 is the Advanced Television Systems Committee (ATSC A/85) standard
  455. // * -23 is the EU R128 broadcast standard
  456. // * -19 is the prior standard for online mono audio
  457. // * -18 is the ReplayGain standard
  458. // * -16 is the prior standard for stereo audio
  459. // * -14 is the new online audio standard recommended by Spotify, as well
  460. // as Amazon Echo
  461. // * 0 disables normalization
  462. double lufs = 1;
  463. // Enable boosting high frequency components. The default is `false`.
  464. //
  465. // **Note:** This field is not supported.
  466. bool high_boost = 2;
  467. // Enable boosting low frequency components. The default is `false`.
  468. //
  469. // **Note:** This field is not supported.
  470. bool low_boost = 3;
  471. }
  472. // Video cropping configuration for the input video. The cropped input video
  473. // is scaled to match the output resolution.
  474. message Crop {
  475. // The number of pixels to crop from the top. The default is 0.
  476. int32 top_pixels = 1;
  477. // The number of pixels to crop from the bottom. The default is 0.
  478. int32 bottom_pixels = 2;
  479. // The number of pixels to crop from the left. The default is 0.
  480. int32 left_pixels = 3;
  481. // The number of pixels to crop from the right. The default is 0.
  482. int32 right_pixels = 4;
  483. }
  484. // Pad filter configuration for the input video. The padded input video
  485. // is scaled after padding with black to match the output resolution.
  486. message Pad {
  487. // The number of pixels to add to the top. The default is 0.
  488. int32 top_pixels = 1;
  489. // The number of pixels to add to the bottom. The default is 0.
  490. int32 bottom_pixels = 2;
  491. // The number of pixels to add to the left. The default is 0.
  492. int32 left_pixels = 3;
  493. // The number of pixels to add to the right. The default is 0.
  494. int32 right_pixels = 4;
  495. }
  496. // Deinterlace configuration for input video.
  497. message Deinterlace {
  498. // Yet Another Deinterlacing Filter Configuration.
  499. message YadifConfig {
  500. // Specifies the deinterlacing mode to adopt.
  501. // The default is `send_frame`.
  502. // Supported values:
  503. //
  504. // - `send_frame`: Output one frame for each frame
  505. // - `send_field`: Output one frame for each field
  506. string mode = 1;
  507. // Disable spacial interlacing.
  508. // The default is `false`.
  509. bool disable_spatial_interlacing = 2;
  510. // The picture field parity assumed for the input interlaced video.
  511. // The default is `auto`.
  512. // Supported values:
  513. //
  514. // - `tff`: Assume the top field is first
  515. // - `bff`: Assume the bottom field is first
  516. // - `auto`: Enable automatic detection of field parity
  517. string parity = 3;
  518. // Deinterlace all frames rather than just the frames identified as
  519. // interlaced. The default is `false`.
  520. bool deinterlace_all_frames = 4;
  521. }
  522. // Bob Weaver Deinterlacing Filter Configuration.
  523. message BwdifConfig {
  524. // Specifies the deinterlacing mode to adopt.
  525. // The default is `send_frame`.
  526. // Supported values:
  527. //
  528. // - `send_frame`: Output one frame for each frame
  529. // - `send_field`: Output one frame for each field
  530. string mode = 1;
  531. // The picture field parity assumed for the input interlaced video.
  532. // The default is `auto`.
  533. // Supported values:
  534. //
  535. // - `tff`: Assume the top field is first
  536. // - `bff`: Assume the bottom field is first
  537. // - `auto`: Enable automatic detection of field parity
  538. string parity = 2;
  539. // Deinterlace all frames rather than just the frames identified as
  540. // interlaced. The default is `false`.
  541. bool deinterlace_all_frames = 3;
  542. }
  543. // Specify the video deinterlacing filter. The default is `yadif`.
  544. oneof deinterlacing_filter {
  545. // Specifies the Yet Another Deinterlacing Filter Configuration.
  546. YadifConfig yadif = 1;
  547. // Specifies the Bob Weaver Deinterlacing Filter Configuration.
  548. BwdifConfig bwdif = 2;
  549. }
  550. }
  551. // Color preprocessing configuration.
  552. Color color = 1;
  553. // Denoise preprocessing configuration.
  554. Denoise denoise = 2;
  555. // Deblock preprocessing configuration.
  556. Deblock deblock = 3;
  557. // Audio preprocessing configuration.
  558. Audio audio = 4;
  559. // Specify the video cropping configuration.
  560. Crop crop = 5;
  561. // Specify the video pad filter configuration.
  562. Pad pad = 6;
  563. // Specify the video deinterlace configuration.
  564. Deinterlace deinterlace = 7;
  565. }
  566. // Video stream resource.
  567. message VideoStream {
  568. // H264 codec settings.
  569. message H264CodecSettings {
  570. // The width of the video in pixels. Must be an even integer.
  571. // When not specified, the width is adjusted to match the specified height
  572. // and input aspect ratio. If both are omitted, the input width is used.
  573. //
  574. // For portrait videos that contain horizontal ASR and rotation metadata,
  575. // provide the width, in pixels, per the horizontal ASR. The API calculates
  576. // the height per the horizontal ASR. The API detects any rotation metadata
  577. // and swaps the requested height and width for the output.
  578. int32 width_pixels = 1;
  579. // The height of the video in pixels. Must be an even integer.
  580. // When not specified, the height is adjusted to match the specified width
  581. // and input aspect ratio. If both are omitted, the input height is used.
  582. //
  583. // For portrait videos that contain horizontal ASR and rotation metadata,
  584. // provide the height, in pixels, per the horizontal ASR. The API calculates
  585. // the width per the horizontal ASR. The API detects any rotation metadata
  586. // and swaps the requested height and width for the output.
  587. int32 height_pixels = 2;
  588. // Required. The target video frame rate in frames per second (FPS). Must be less than
  589. // or equal to 120. Will default to the input frame rate if larger than the
  590. // input frame rate. The API will generate an output FPS that is divisible
  591. // by the input FPS, and smaller or equal to the target FPS. See
  592. // [Calculating frame
  593. // rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate) for
  594. // more information.
  595. double frame_rate = 3 [(google.api.field_behavior) = REQUIRED];
  596. // Required. The video bitrate in bits per second. The minimum value is 1,000.
  597. // The maximum value is 800,000,000.
  598. int32 bitrate_bps = 4 [(google.api.field_behavior) = REQUIRED];
  599. // Pixel format to use. The default is `yuv420p`.
  600. //
  601. // Supported pixel formats:
  602. //
  603. // - `yuv420p` pixel format
  604. // - `yuv422p` pixel format
  605. // - `yuv444p` pixel format
  606. // - `yuv420p10` 10-bit HDR pixel format
  607. // - `yuv422p10` 10-bit HDR pixel format
  608. // - `yuv444p10` 10-bit HDR pixel format
  609. // - `yuv420p12` 12-bit HDR pixel format
  610. // - `yuv422p12` 12-bit HDR pixel format
  611. // - `yuv444p12` 12-bit HDR pixel format
  612. string pixel_format = 5;
  613. // Specify the `rate_control_mode`. The default is `vbr`.
  614. //
  615. // Supported rate control modes:
  616. //
  617. // - `vbr` - variable bitrate
  618. // - `crf` - constant rate factor
  619. string rate_control_mode = 6;
  620. // Target CRF level. Must be between 10 and 36, where 10 is the highest
  621. // quality and 36 is the most efficient compression. The default is 21.
  622. int32 crf_level = 7;
  623. // Specifies whether an open Group of Pictures (GOP) structure should be
  624. // allowed or not. The default is `false`.
  625. bool allow_open_gop = 8;
  626. // GOP mode can be either by frame count or duration.
  627. oneof gop_mode {
  628. // Select the GOP size based on the specified frame count. Must be greater
  629. // than zero.
  630. int32 gop_frame_count = 9;
  631. // Select the GOP size based on the specified duration. The default is
  632. // `3s`. Note that `gopDuration` must be less than or equal to
  633. // [`segmentDuration`](#SegmentSettings), and
  634. // [`segmentDuration`](#SegmentSettings) must be divisible by
  635. // `gopDuration`.
  636. google.protobuf.Duration gop_duration = 10;
  637. }
  638. // Use two-pass encoding strategy to achieve better video quality.
  639. // `VideoStream.rate_control_mode` must be `vbr`. The default is `false`.
  640. bool enable_two_pass = 11;
  641. // Size of the Video Buffering Verifier (VBV) buffer in bits. Must be
  642. // greater than zero. The default is equal to `VideoStream.bitrate_bps`.
  643. int32 vbv_size_bits = 12;
  644. // Initial fullness of the Video Buffering Verifier (VBV) buffer in bits.
  645. // Must be greater than zero. The default is equal to 90% of
  646. // `VideoStream.vbv_size_bits`.
  647. int32 vbv_fullness_bits = 13;
  648. // The entropy coder to use. The default is `cabac`.
  649. //
  650. // Supported entropy coders:
  651. //
  652. // - `cavlc`
  653. // - `cabac`
  654. string entropy_coder = 14;
  655. // Allow B-pyramid for reference frame selection. This may not be supported
  656. // on all decoders. The default is `false`.
  657. bool b_pyramid = 15;
  658. // The number of consecutive B-frames. Must be greater than or equal to
  659. // zero. Must be less than `VideoStream.gop_frame_count` if set. The default
  660. // is 0.
  661. int32 b_frame_count = 16;
  662. // Specify the intensity of the adaptive quantizer (AQ). Must be between 0
  663. // and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A
  664. // higher value equals a lower bitrate but smoother image. The default is 0.
  665. double aq_strength = 17;
  666. // Enforces the specified codec profile. The following profiles are
  667. // supported:
  668. //
  669. // * `baseline`
  670. // * `main`
  671. // * `high` (default)
  672. //
  673. // The available options are
  674. // [FFmpeg-compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune).
  675. // Note that certain values for this field may cause the
  676. // transcoder to override other fields you set in the `H264CodecSettings`
  677. // message.
  678. string profile = 18;
  679. // Enforces the specified codec tune. The available options are
  680. // [FFmpeg-compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Tune).
  681. // Note that certain values for this field may cause the
  682. // transcoder to override other fields you set in the `H264CodecSettings`
  683. // message.
  684. string tune = 19;
  685. // Enforces the specified codec preset. The default is `veryfast`. The
  686. // available options are
  687. // [FFmpeg-compatible](https://trac.ffmpeg.org/wiki/Encode/H.264#Preset).
  688. // Note that certain values for this field may cause the
  689. // transcoder to override other fields you set in the `H264CodecSettings`
  690. // message.
  691. string preset = 20;
  692. }
  693. // H265 codec settings.
  694. message H265CodecSettings {
  695. // The width of the video in pixels. Must be an even integer.
  696. // When not specified, the width is adjusted to match the specified height
  697. // and input aspect ratio. If both are omitted, the input width is used.
  698. //
  699. // For portrait videos that contain horizontal ASR and rotation metadata,
  700. // provide the width, in pixels, per the horizontal ASR. The API calculates
  701. // the height per the horizontal ASR. The API detects any rotation metadata
  702. // and swaps the requested height and width for the output.
  703. int32 width_pixels = 1;
  704. // The height of the video in pixels. Must be an even integer.
  705. // When not specified, the height is adjusted to match the specified width
  706. // and input aspect ratio. If both are omitted, the input height is used.
  707. //
  708. // For portrait videos that contain horizontal ASR and rotation metadata,
  709. // provide the height, in pixels, per the horizontal ASR. The API calculates
  710. // the width per the horizontal ASR. The API detects any rotation metadata
  711. // and swaps the requested height and width for the output.
  712. int32 height_pixels = 2;
  713. // Required. The target video frame rate in frames per second (FPS). Must be less than
  714. // or equal to 120. Will default to the input frame rate if larger than the
  715. // input frame rate. The API will generate an output FPS that is divisible
  716. // by the input FPS, and smaller or equal to the target FPS. See
  717. // [Calculating frame
  718. // rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate) for
  719. // more information.
  720. double frame_rate = 3 [(google.api.field_behavior) = REQUIRED];
  721. // Required. The video bitrate in bits per second. The minimum value is 1,000.
  722. // The maximum value is 800,000,000.
  723. int32 bitrate_bps = 4 [(google.api.field_behavior) = REQUIRED];
  724. // Pixel format to use. The default is `yuv420p`.
  725. //
  726. // Supported pixel formats:
  727. //
  728. // - `yuv420p` pixel format
  729. // - `yuv422p` pixel format
  730. // - `yuv444p` pixel format
  731. // - `yuv420p10` 10-bit HDR pixel format
  732. // - `yuv422p10` 10-bit HDR pixel format
  733. // - `yuv444p10` 10-bit HDR pixel format
  734. // - `yuv420p12` 12-bit HDR pixel format
  735. // - `yuv422p12` 12-bit HDR pixel format
  736. // - `yuv444p12` 12-bit HDR pixel format
  737. string pixel_format = 5;
  738. // Specify the `rate_control_mode`. The default is `vbr`.
  739. //
  740. // Supported rate control modes:
  741. //
  742. // - `vbr` - variable bitrate
  743. // - `crf` - constant rate factor
  744. string rate_control_mode = 6;
  745. // Target CRF level. Must be between 10 and 36, where 10 is the highest
  746. // quality and 36 is the most efficient compression. The default is 21.
  747. int32 crf_level = 7;
  748. // Specifies whether an open Group of Pictures (GOP) structure should be
  749. // allowed or not. The default is `false`.
  750. bool allow_open_gop = 8;
  751. // GOP mode can be either by frame count or duration.
  752. oneof gop_mode {
  753. // Select the GOP size based on the specified frame count. Must be greater
  754. // than zero.
  755. int32 gop_frame_count = 9;
  756. // Select the GOP size based on the specified duration. The default is
  757. // `3s`. Note that `gopDuration` must be less than or equal to
  758. // [`segmentDuration`](#SegmentSettings), and
  759. // [`segmentDuration`](#SegmentSettings) must be divisible by
  760. // `gopDuration`.
  761. google.protobuf.Duration gop_duration = 10;
  762. }
  763. // Use two-pass encoding strategy to achieve better video quality.
  764. // `VideoStream.rate_control_mode` must be `vbr`. The default is `false`.
  765. bool enable_two_pass = 11;
  766. // Size of the Video Buffering Verifier (VBV) buffer in bits. Must be
  767. // greater than zero. The default is equal to `VideoStream.bitrate_bps`.
  768. int32 vbv_size_bits = 12;
  769. // Initial fullness of the Video Buffering Verifier (VBV) buffer in bits.
  770. // Must be greater than zero. The default is equal to 90% of
  771. // `VideoStream.vbv_size_bits`.
  772. int32 vbv_fullness_bits = 13;
  773. // Allow B-pyramid for reference frame selection. This may not be supported
  774. // on all decoders. The default is `false`.
  775. bool b_pyramid = 14;
  776. // The number of consecutive B-frames. Must be greater than or equal to
  777. // zero. Must be less than `VideoStream.gop_frame_count` if set. The default
  778. // is 0.
  779. int32 b_frame_count = 15;
  780. // Specify the intensity of the adaptive quantizer (AQ). Must be between 0
  781. // and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A
  782. // higher value equals a lower bitrate but smoother image. The default is 0.
  783. double aq_strength = 16;
  784. // Enforces the specified codec profile. The following profiles are
  785. // supported:
  786. //
  787. // * 8-bit profiles
  788. // * `main` (default)
  789. // * `main-intra`
  790. // * `mainstillpicture`
  791. // * 10-bit profiles
  792. // * `main10` (default)
  793. // * `main10-intra`
  794. // * `main422-10`
  795. // * `main422-10-intra`
  796. // * `main444-10`
  797. // * `main444-10-intra`
  798. // * 12-bit profiles
  799. // * `main12` (default)
  800. // * `main12-intra`
  801. // * `main422-12`
  802. // * `main422-12-intra`
  803. // * `main444-12`
  804. // * `main444-12-intra`
  805. //
  806. // The available options are
  807. // [FFmpeg-compatible](https://x265.readthedocs.io/).
  808. // Note that certain values for this field may cause the
  809. // transcoder to override other fields you set in the `H265CodecSettings`
  810. // message.
  811. string profile = 17;
  812. // Enforces the specified codec tune. The available options are
  813. // [FFmpeg-compatible](https://trac.ffmpeg.org/wiki/Encode/H.265).
  814. // Note that certain values for this field may cause the
  815. // transcoder to override other fields you set in the `H265CodecSettings`
  816. // message.
  817. string tune = 18;
  818. // Enforces the specified codec preset. The default is `veryfast`. The
  819. // available options are
  820. // [FFmpeg-compatible](https://trac.ffmpeg.org/wiki/Encode/H.265).
  821. // Note that certain values for this field may cause the
  822. // transcoder to override other fields you set in the `H265CodecSettings`
  823. // message.
  824. string preset = 19;
  825. }
  826. // VP9 codec settings.
  827. message Vp9CodecSettings {
  828. // The width of the video in pixels. Must be an even integer.
  829. // When not specified, the width is adjusted to match the specified height
  830. // and input aspect ratio. If both are omitted, the input width is used.
  831. //
  832. // For portrait videos that contain horizontal ASR and rotation metadata,
  833. // provide the width, in pixels, per the horizontal ASR. The API calculates
  834. // the height per the horizontal ASR. The API detects any rotation metadata
  835. // and swaps the requested height and width for the output.
  836. int32 width_pixels = 1;
  837. // The height of the video in pixels. Must be an even integer.
  838. // When not specified, the height is adjusted to match the specified width
  839. // and input aspect ratio. If both are omitted, the input height is used.
  840. //
  841. // For portrait videos that contain horizontal ASR and rotation metadata,
  842. // provide the height, in pixels, per the horizontal ASR. The API calculates
  843. // the width per the horizontal ASR. The API detects any rotation metadata
  844. // and swaps the requested height and width for the output.
  845. int32 height_pixels = 2;
  846. // Required. The target video frame rate in frames per second (FPS). Must be less than
  847. // or equal to 120. Will default to the input frame rate if larger than the
  848. // input frame rate. The API will generate an output FPS that is divisible
  849. // by the input FPS, and smaller or equal to the target FPS. See
  850. // [Calculating frame
  851. // rate](https://cloud.google.com/transcoder/docs/concepts/frame-rate) for
  852. // more information.
  853. double frame_rate = 3 [(google.api.field_behavior) = REQUIRED];
  854. // Required. The video bitrate in bits per second. The minimum value is 1,000.
  855. // The maximum value is 480,000,000.
  856. int32 bitrate_bps = 4 [(google.api.field_behavior) = REQUIRED];
  857. // Pixel format to use. The default is `yuv420p`.
  858. //
  859. // Supported pixel formats:
  860. //
  861. // - `yuv420p` pixel format
  862. // - `yuv422p` pixel format
  863. // - `yuv444p` pixel format
  864. // - `yuv420p10` 10-bit HDR pixel format
  865. // - `yuv422p10` 10-bit HDR pixel format
  866. // - `yuv444p10` 10-bit HDR pixel format
  867. // - `yuv420p12` 12-bit HDR pixel format
  868. // - `yuv422p12` 12-bit HDR pixel format
  869. // - `yuv444p12` 12-bit HDR pixel format
  870. string pixel_format = 5;
  871. // Specify the `rate_control_mode`. The default is `vbr`.
  872. //
  873. // Supported rate control modes:
  874. //
  875. // - `vbr` - variable bitrate
  876. string rate_control_mode = 6;
  877. // Target CRF level. Must be between 10 and 36, where 10 is the highest
  878. // quality and 36 is the most efficient compression. The default is 21.
  879. //
  880. // **Note:** This field is not supported.
  881. int32 crf_level = 7;
  882. // GOP mode can be either by frame count or duration.
  883. oneof gop_mode {
  884. // Select the GOP size based on the specified frame count. Must be greater
  885. // than zero.
  886. int32 gop_frame_count = 8;
  887. // Select the GOP size based on the specified duration. The default is
  888. // `3s`. Note that `gopDuration` must be less than or equal to
  889. // [`segmentDuration`](#SegmentSettings), and
  890. // [`segmentDuration`](#SegmentSettings) must be divisible by
  891. // `gopDuration`.
  892. google.protobuf.Duration gop_duration = 9;
  893. }
  894. // Enforces the specified codec profile. The following profiles are
  895. // supported:
  896. //
  897. // * `profile0` (default)
  898. // * `profile1`
  899. // * `profile2`
  900. // * `profile3`
  901. //
  902. // The available options are
  903. // [WebM-compatible](https://www.webmproject.org/vp9/profiles/).
  904. // Note that certain values for this field may cause the
  905. // transcoder to override other fields you set in the `Vp9CodecSettings`
  906. // message.
  907. string profile = 10;
  908. }
  909. // Codec settings can be h264, h265, or vp9.
  910. oneof codec_settings {
  911. // H264 codec settings.
  912. H264CodecSettings h264 = 1;
  913. // H265 codec settings.
  914. H265CodecSettings h265 = 2;
  915. // VP9 codec settings.
  916. Vp9CodecSettings vp9 = 3;
  917. }
  918. }
  919. // Audio stream resource.
  920. message AudioStream {
  921. // The mapping for the `Job.edit_list` atoms with audio `EditAtom.inputs`.
  922. message AudioMapping {
  923. // Required. The `EditAtom.key` that references the atom with audio inputs in the
  924. // `Job.edit_list`.
  925. string atom_key = 1 [(google.api.field_behavior) = REQUIRED];
  926. // Required. The `Input.key` that identifies the input file.
  927. string input_key = 2 [(google.api.field_behavior) = REQUIRED];
  928. // Required. The zero-based index of the track in the input file.
  929. int32 input_track = 3 [(google.api.field_behavior) = REQUIRED];
  930. // Required. The zero-based index of the channel in the input audio stream.
  931. int32 input_channel = 4 [(google.api.field_behavior) = REQUIRED];
  932. // Required. The zero-based index of the channel in the output audio stream.
  933. int32 output_channel = 5 [(google.api.field_behavior) = REQUIRED];
  934. // Audio volume control in dB. Negative values decrease volume,
  935. // positive values increase. The default is 0.
  936. double gain_db = 6;
  937. }
  938. // The codec for this audio stream. The default is `aac`.
  939. //
  940. // Supported audio codecs:
  941. //
  942. // - `aac`
  943. // - `aac-he`
  944. // - `aac-he-v2`
  945. // - `mp3`
  946. // - `ac3`
  947. // - `eac3`
  948. string codec = 1;
  949. // Required. Audio bitrate in bits per second. Must be between 1 and 10,000,000.
  950. int32 bitrate_bps = 2 [(google.api.field_behavior) = REQUIRED];
  951. // Number of audio channels. Must be between 1 and 6. The default is 2.
  952. int32 channel_count = 3;
  953. // A list of channel names specifying layout of the audio channels.
  954. // This only affects the metadata embedded in the container headers, if
  955. // supported by the specified format. The default is `["fl", "fr"]`.
  956. //
  957. // Supported channel names:
  958. //
  959. // - `fl` - Front left channel
  960. // - `fr` - Front right channel
  961. // - `sl` - Side left channel
  962. // - `sr` - Side right channel
  963. // - `fc` - Front center channel
  964. // - `lfe` - Low frequency
  965. repeated string channel_layout = 4;
  966. // The mapping for the `Job.edit_list` atoms with audio `EditAtom.inputs`.
  967. repeated AudioMapping mapping = 5;
  968. // The audio sample rate in Hertz. The default is 48000 Hertz.
  969. int32 sample_rate_hertz = 6;
  970. }
  971. // Encoding of a text stream. For example, closed captions or subtitles.
  972. message TextStream {
  973. // The mapping for the `Job.edit_list` atoms with text `EditAtom.inputs`.
  974. message TextMapping {
  975. // Required. The `EditAtom.key` that references atom with text inputs in the
  976. // `Job.edit_list`.
  977. string atom_key = 1 [(google.api.field_behavior) = REQUIRED];
  978. // Required. The `Input.key` that identifies the input file.
  979. string input_key = 2 [(google.api.field_behavior) = REQUIRED];
  980. // Required. The zero-based index of the track in the input file.
  981. int32 input_track = 3 [(google.api.field_behavior) = REQUIRED];
  982. }
  983. // The codec for this text stream. The default is `webvtt`.
  984. //
  985. // Supported text codecs:
  986. //
  987. // - `srt`
  988. // - `ttml`
  989. // - `cea608`
  990. // - `cea708`
  991. // - `webvtt`
  992. string codec = 1;
  993. // The mapping for the `Job.edit_list` atoms with text `EditAtom.inputs`.
  994. repeated TextMapping mapping = 3;
  995. }
  996. // Segment settings for `ts`, `fmp4` and `vtt`.
  997. message SegmentSettings {
  998. // Duration of the segments in seconds. The default is `6.0s`. Note that
  999. // `segmentDuration` must be greater than or equal to
  1000. // [`gopDuration`](#videostream), and `segmentDuration` must be divisible by
  1001. // [`gopDuration`](#videostream).
  1002. google.protobuf.Duration segment_duration = 1;
  1003. // Required. Create an individual segment file. The default is `false`.
  1004. bool individual_segments = 3 [(google.api.field_behavior) = REQUIRED];
  1005. }