mirror of
https://github.com/LuanRT/googlevideo.git
synced 2026-06-19 11:41:17 +00:00
23 lines
701 B
Protocol Buffer
23 lines
701 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
message EncryptedPlayerRequest {
|
|
optional bytes context = 1;
|
|
optional bytes encrypted_onesie_player_request = 2;
|
|
optional bytes encrypted_client_key = 5;
|
|
optional bytes iv = 6;
|
|
optional bytes hmac = 7;
|
|
optional string reverse_proxy_config = 9;
|
|
optional bool serialize_response_as_json = 10;
|
|
optional bool enable_ad_placements_preroll = 13;
|
|
optional bool enable_compression = 14;
|
|
|
|
message UstreamerFlags {
|
|
optional bool send_video_playback_config = 2;
|
|
}
|
|
|
|
optional UstreamerFlags ustreamer_flags = 15;
|
|
|
|
optional bytes unencrypted_onesie_player_request = 16;
|
|
optional bool use_jsonformatter_to_parse_player_response = 17;
|
|
} |