sessions.proto 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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.stitcher.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/video/stitcher/v1/companions.proto";
  19. import "google/cloud/video/stitcher/v1/events.proto";
  20. import "google/protobuf/duration.proto";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "SessionsProto";
  24. option java_package = "com.google.cloud.video.stitcher.v1";
  25. // Metadata for a VOD session.
  26. message VodSession {
  27. option (google.api.resource) = {
  28. type: "videostitcher.googleapis.com/VodSession"
  29. pattern: "projects/{project}/locations/{location}/vodSessions/{vod_session}"
  30. };
  31. // Output only. The name of the VOD session, in the form of
  32. // `projects/{project_number}/locations/{location}/vodSessions/{id}`.
  33. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  34. // Output only. Metadata of what was stitched into the content.
  35. Interstitials interstitials = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  36. // Output only. The playback URI of the stitched content.
  37. string play_uri = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  38. // Required. URI of the media to stitch.
  39. string source_uri = 5 [(google.api.field_behavior) = REQUIRED];
  40. // Required. Ad tag URI.
  41. string ad_tag_uri = 6 [(google.api.field_behavior) = REQUIRED];
  42. // Key value pairs for ad tag macro replacement. If the
  43. // specified ad tag URI has macros, this field provides the mapping
  44. // to the value that will replace the macro in the ad tag URI.
  45. // Macros are designated by square brackets.
  46. // For example:
  47. //
  48. // Ad tag URI: `"https://doubleclick.google.com/ad/1?geo_id=[geoId]"`
  49. //
  50. // Ad tag macro map: `{"geoId": "123"}`
  51. //
  52. // Fully qualified ad tag:
  53. // `"`https://doubleclick.google.com/ad/1?geo_id=123"`
  54. map<string, string> ad_tag_macro_map = 7;
  55. // Indicates whether client side ad tracking is enabled. If client
  56. // side ad tracking is enabled, then the client player is expected
  57. // to trigger playback and activity events itself.
  58. // If this is set to false, server side ad tracking is enabled,
  59. // causing the Video Stitcher service will trigger playback events
  60. // on behalf of the client player.
  61. bool client_ad_tracking = 8;
  62. // Additional options that affect the output of the manifest.
  63. ManifestOptions manifest_options = 9;
  64. // Output only. The generated ID of the VodSession's source media.
  65. string asset_id = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  66. }
  67. // Describes what was stitched into a VOD session's manifest.
  68. message Interstitials {
  69. // List of ad breaks ordered by time.
  70. repeated VodSessionAdBreak ad_breaks = 1;
  71. // Information related to the content of the VOD session.
  72. VodSessionContent session_content = 2;
  73. }
  74. // Metadata for an inserted ad in a VOD session.
  75. message VodSessionAd {
  76. // Duration in seconds of the ad.
  77. google.protobuf.Duration duration = 1;
  78. // Metadata of companion ads associated with the ad.
  79. CompanionAds companion_ads = 2;
  80. // The list of progress tracking events for the ad break. These can be of
  81. // the following IAB types: `MUTE`, `UNMUTE`, `PAUSE`, `CLICK`,
  82. // `CLICK_THROUGH`, `REWIND`, `RESUME`, `ERROR`, `FULLSCREEN`,
  83. // `EXIT_FULLSCREEN`, `EXPAND`, `COLLAPSE`, `ACCEPT_INVITATION_LINEAR`,
  84. // `CLOSE_LINEAR`, `SKIP`.
  85. repeated Event activity_events = 3;
  86. }
  87. // Metadata for the entire stitched content in a VOD session.
  88. message VodSessionContent {
  89. // The total duration in seconds of the content including the ads stitched
  90. // in.
  91. google.protobuf.Duration duration = 1;
  92. }
  93. // Metadata for an inserted ad break.
  94. message VodSessionAdBreak {
  95. // List of events that are expected to be triggered, ordered by time.
  96. repeated ProgressEvent progress_events = 1;
  97. // Ordered list of ads stitched into the ad break.
  98. repeated VodSessionAd ads = 2;
  99. // Ad break end time in seconds relative to the start of the VOD asset.
  100. google.protobuf.Duration end_time_offset = 3;
  101. // Ad break start time in seconds relative to the start of the VOD asset.
  102. google.protobuf.Duration start_time_offset = 4;
  103. }
  104. // Metadata for a live session.
  105. message LiveSession {
  106. option (google.api.resource) = {
  107. type: "videostitcher.googleapis.com/LiveSession"
  108. pattern: "projects/{project}/locations/{location}/liveSessions/{live_session}"
  109. };
  110. // Defines the stitcher behavior in case an ad does not align exactly with
  111. // the ad break boundaries. If not specified, the default is COMPLETE_AD.
  112. enum StitchingPolicy {
  113. // Stitching policy is not specified.
  114. STITCHING_POLICY_UNSPECIFIED = 0;
  115. // Finishes stitching the current ad before returning to content.
  116. COMPLETE_AD = 1;
  117. // Cuts an ad short and returns to content in the middle of the ad.
  118. CUT_CURRENT = 3;
  119. }
  120. // Output only. The name of the live session, in the form of
  121. // `projects/{project}/locations/{location}/liveSessions/{id}`.
  122. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  123. // Output only. The URI to play the live session's ad-stitched stream.
  124. string play_uri = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  125. // The URI of the live session's source stream.
  126. string source_uri = 3;
  127. // The default ad tag to use when no ad tag ids are specified in an ad break's
  128. // SCTE-35 message.
  129. //
  130. // default_ad_tag_id is necessary when `adTagMap` has more than one key. Its
  131. // value must be present in the `adTagMap`.
  132. string default_ad_tag_id = 4;
  133. // Key value pairs for ad tags. Ads parsed from ad tags must be MP4 videos
  134. // each with at least one audio track.
  135. map<string, AdTag> ad_tag_map = 5;
  136. // Key value pairs for ad tag macro replacement. If the
  137. // specified ad tag URI has macros, this field provides the mapping
  138. // to the value that will replace the macro in the ad tag URI.
  139. // Macros are designated by square brackets.
  140. //
  141. // For example:
  142. //
  143. // Ad tag URI: "https://doubleclick.google.com/ad/1?geo_id=[geoId]"
  144. //
  145. // Ad tag macros: `{"geoId": "123"}`
  146. //
  147. // Fully qualified ad tag:
  148. // `"https://doubleclick.google.com/ad/1?geo_id=123"`
  149. map<string, string> ad_tag_macros = 6;
  150. // Whether client side ad tracking is enabled. If enabled, the client player
  151. // is expected to trigger playback and activity events itself. Otherwise,
  152. // server side ad tracking is enabled and the Video Stitcher API will trigger
  153. // playback events on behalf of the client player.
  154. bool client_ad_tracking = 7;
  155. // The default slate to use when no slates are specified in an ad break's
  156. // SCTE-35 message. When specified, this value must match the ID for a slate
  157. // that has already been created via the
  158. // [CreateSlate](projects.locations.slates/create) method.
  159. string default_slate_id = 8;
  160. // Defines the stitcher behavior in case an ad does not align exactly with
  161. // the ad break boundaries. If not specified, the default is `COMPLETE_AD`.
  162. StitchingPolicy stitching_policy = 9;
  163. // Additional options that affect the output of the manifest.
  164. ManifestOptions manifest_options = 10;
  165. // Output only. The generated ID of the LiveSession's source stream.
  166. string stream_id = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  167. }
  168. // Metadata of an ad tag.
  169. message AdTag {
  170. // Ad tag URI template.
  171. string uri = 1;
  172. }
  173. // Options for manifest generation.
  174. message ManifestOptions {
  175. // Defines the ordering policy during manifest generation.
  176. enum OrderPolicy {
  177. // Ordering policy is not specified.
  178. ORDER_POLICY_UNSPECIFIED = 0;
  179. // Order by ascending.
  180. ASCENDING = 1;
  181. // Order by descending.
  182. DESCENDING = 2;
  183. }
  184. // If specified, the output manifest will only return renditions matching the
  185. // specified filters.
  186. repeated RenditionFilter include_renditions = 1;
  187. // If specified, the output manifest will orders the video and muxed
  188. // renditions by bitrate according to the ordering policy.
  189. OrderPolicy bitrate_order = 2;
  190. }
  191. // Filters for a video or muxed redition.
  192. message RenditionFilter {
  193. // Bitrate in bits per second for the rendition. If set, only renditions with
  194. // the exact bitrate will match.
  195. int32 bitrate_bps = 1;
  196. // Codecs for the rendition. If set, only renditions with the exact value
  197. // will match.
  198. string codecs = 2;
  199. }