1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- syntax = "proto2";
- message PublishedBeforeJoystream {
- optional bool is_published = 1;
- optional uint32 timestamp = 2;
- }
- message License {
-
- optional int32 code = 1;
-
- optional string attribution = 2;
-
- optional string custom_text = 3;
- }
- message MediaType {
-
- optional string codec_name = 1;
-
-
- optional string container = 2;
-
-
- optional string mime_media_type = 3;
- }
- message VideoMetadata {
-
- optional string title = 1;
-
- optional string description = 2;
-
- optional int32 duration = 3;
-
- optional int32 media_pixel_height = 4;
-
-
- optional int32 media_pixel_width = 5;
-
- optional MediaType media_type = 6;
-
- optional string language = 7;
-
- optional License license = 8;
-
- optional PublishedBeforeJoystream published_before_joystream = 9;
-
- optional bool has_marketing = 10;
-
- optional bool is_public = 11;
-
- optional bool is_explicit = 12;
- }
|