mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-02-12 04:10:08 +08:00
16 lines
345 B
Protocol Buffer
16 lines
345 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.app.archive.middleware.v1;
|
|
|
|
// 视频秒开参数
|
|
message PlayerArgs {
|
|
// 清晰度
|
|
int64 qn = 1;
|
|
// 流版本
|
|
int64 fnver = 2;
|
|
// 流类型
|
|
int64 fnval = 3;
|
|
// 返回url是否强制使用域名
|
|
// 0:不强制使用域名 1:http域名 2:https域名
|
|
int64 force_host = 4;
|
|
} |