mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-13 01:22:11 +00:00
32 lines
523 B
Protocol Buffer
32 lines
523 B
Protocol Buffer
syntax = "proto3";
|
|
package misc;
|
|
|
|
message HttpHeader {
|
|
optional string name = 1;
|
|
optional string value = 2;
|
|
}
|
|
|
|
message FormatId {
|
|
optional int32 itag = 1;
|
|
optional uint64 last_modified = 2;
|
|
optional string xtags = 3;
|
|
}
|
|
|
|
message InitRange {
|
|
optional int32 start = 1;
|
|
optional int32 end = 2;
|
|
}
|
|
|
|
message IndexRange {
|
|
optional int32 start = 1;
|
|
optional int32 end = 2;
|
|
}
|
|
|
|
message KeyValuePair {
|
|
optional string key = 1;
|
|
optional string value = 2;
|
|
}
|
|
|
|
message FormatXTags {
|
|
repeated KeyValuePair xtags = 1;
|
|
} |