mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
* refactor: Add extracted protos * refactor: Remove old stuff and update affected code * chore(package): Update `build:proto` script * chore(ClientInfo): Rename `androidSdkVersion` to `android_sdk_version` * chore: remove refs to old proto file * refactor(sabr_request): Rename `Gw` to `media_type` * chore(sabr_request): Fix typo in field num * feat(parser): Parse `video_playback_ustreamer_config` and `server_abr_streaming_url` * refactor: update protos * chore(package): streamline clean and build scripts * chore: update package.json * chore: update npmignore * chore(protos): Remove unneeded definitions See https://github.com/LuanRT/googlevideo for video playback proto definitions. * chore(package): add `rimraf` dependency
15 lines
399 B
Protocol Buffer
15 lines
399 B
Protocol Buffer
syntax = "proto3";
|
|
package youtube.api.pfiinnertube;
|
|
|
|
message CapabilityInfo {
|
|
optional string profile = 1;
|
|
repeated InnerTubeCapability supported_capabilities = 2;
|
|
repeated InnerTubeCapability disabled_capabilities = 3;
|
|
optional string snapshot = 5;
|
|
}
|
|
|
|
message InnerTubeCapability {
|
|
optional uint32 capability = 1;
|
|
optional uint32 features = 2;
|
|
optional string experiment_flags = 6;
|
|
} |