123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- syntax = "proto3";
- package google.cloud.video.stitcher.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/video/stitcher/v1/companions.proto";
- import "google/cloud/video/stitcher/v1/events.proto";
- import "google/protobuf/duration.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
- option java_multiple_files = true;
- option java_outer_classname = "SessionsProto";
- option java_package = "com.google.cloud.video.stitcher.v1";
- message VodSession {
- option (google.api.resource) = {
- type: "videostitcher.googleapis.com/VodSession"
- pattern: "projects/{project}/locations/{location}/vodSessions/{vod_session}"
- };
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- Interstitials interstitials = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string play_uri = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string source_uri = 5 [(google.api.field_behavior) = REQUIRED];
-
- string ad_tag_uri = 6 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> ad_tag_macro_map = 7;
-
-
-
-
-
-
- bool client_ad_tracking = 8;
-
- ManifestOptions manifest_options = 9;
-
- string asset_id = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message Interstitials {
-
- repeated VodSessionAdBreak ad_breaks = 1;
-
- VodSessionContent session_content = 2;
- }
- message VodSessionAd {
-
- google.protobuf.Duration duration = 1;
-
- CompanionAds companion_ads = 2;
-
-
-
-
-
- repeated Event activity_events = 3;
- }
- message VodSessionContent {
-
-
- google.protobuf.Duration duration = 1;
- }
- message VodSessionAdBreak {
-
- repeated ProgressEvent progress_events = 1;
-
- repeated VodSessionAd ads = 2;
-
- google.protobuf.Duration end_time_offset = 3;
-
- google.protobuf.Duration start_time_offset = 4;
- }
- message LiveSession {
- option (google.api.resource) = {
- type: "videostitcher.googleapis.com/LiveSession"
- pattern: "projects/{project}/locations/{location}/liveSessions/{live_session}"
- };
-
-
- enum StitchingPolicy {
-
- STITCHING_POLICY_UNSPECIFIED = 0;
-
- COMPLETE_AD = 1;
-
- CUT_CURRENT = 3;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string play_uri = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string source_uri = 3;
-
-
-
-
-
- string default_ad_tag_id = 4;
-
-
- map<string, AdTag> ad_tag_map = 5;
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, string> ad_tag_macros = 6;
-
-
-
-
- bool client_ad_tracking = 7;
-
-
-
-
- string default_slate_id = 8;
-
-
- StitchingPolicy stitching_policy = 9;
-
- ManifestOptions manifest_options = 10;
-
- string stream_id = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message AdTag {
-
- string uri = 1;
- }
- message ManifestOptions {
-
- enum OrderPolicy {
-
- ORDER_POLICY_UNSPECIFIED = 0;
-
- ASCENDING = 1;
-
- DESCENDING = 2;
- }
-
-
- repeated RenditionFilter include_renditions = 1;
-
-
- OrderPolicy bitrate_order = 2;
- }
- message RenditionFilter {
-
-
- int32 bitrate_bps = 1;
-
-
- string codecs = 2;
- }
|