events.proto 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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/protobuf/duration.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "EventsProto";
  20. option java_package = "com.google.cloud.video.stitcher.v1";
  21. // Describes an event and a trigger URI.
  22. message Event {
  23. // Describes the event that occurred.
  24. enum EventType {
  25. // The event type is unspecified.
  26. EVENT_TYPE_UNSPECIFIED = 0;
  27. // First frame of creative ad viewed.
  28. CREATIVE_VIEW = 1;
  29. // Creative ad started.
  30. START = 2;
  31. // Start of an ad break.
  32. BREAK_START = 3;
  33. // End of an ad break.
  34. BREAK_END = 4;
  35. // Impression.
  36. IMPRESSION = 5;
  37. // First quartile progress.
  38. FIRST_QUARTILE = 6;
  39. // Midpoint progress.
  40. MIDPOINT = 7;
  41. // Third quartile progress.
  42. THIRD_QUARTILE = 8;
  43. // Ad progress completed.
  44. COMPLETE = 9;
  45. // Specific progress event with an offset.
  46. PROGRESS = 10;
  47. // Player muted.
  48. MUTE = 11;
  49. // Player unmuted.
  50. UNMUTE = 12;
  51. // Player paused.
  52. PAUSE = 13;
  53. // Click event.
  54. CLICK = 14;
  55. // Click-through event.
  56. CLICK_THROUGH = 15;
  57. // Player rewinding.
  58. REWIND = 16;
  59. // Player resumed.
  60. RESUME = 17;
  61. // Error event.
  62. ERROR = 18;
  63. // Ad expanded to a larger size.
  64. EXPAND = 21;
  65. // Ad collapsed to a smaller size.
  66. COLLAPSE = 22;
  67. // Non-linear ad closed.
  68. CLOSE = 24;
  69. // Linear ad closed.
  70. CLOSE_LINEAR = 25;
  71. // Ad skipped.
  72. SKIP = 26;
  73. // Accept invitation event.
  74. ACCEPT_INVITATION = 27;
  75. }
  76. // Describes the event that occurred.
  77. EventType type = 1;
  78. // The URI to trigger for this event.
  79. string uri = 2;
  80. // The ID of the event.
  81. string id = 3;
  82. // The offset in seconds if the event type is `PROGRESS`.
  83. google.protobuf.Duration offset = 4;
  84. }
  85. // Indicates a time in which a list of events should be triggered
  86. // during media playback.
  87. message ProgressEvent {
  88. // The time when the following tracking events occurs. The time is in
  89. // seconds relative to the start of the VOD asset.
  90. google.protobuf.Duration time_offset = 1;
  91. // The list of progress tracking events for the ad break. These can be of
  92. // the following IAB types: `BREAK_START`, `BREAK_END`, `IMPRESSION`,
  93. // `CREATIVE_VIEW`, `START`, `FIRST_QUARTILE`, `MIDPOINT`, `THIRD_QUARTILE`,
  94. // `COMPLETE`, `PROGRESS`.
  95. repeated Event events = 2;
  96. }