PlayerConfig
该类提供播放器设置的相关方法。
C++
class PlayerConfig {
public:
void SetAutoPlay(bool auto_play, Error *err = nullptr);
bool GetAutoPlay(Error *err = nullptr);
void SetAbrSubscriptionLayer(AbrSubscriptionLayer abr_subscription_layer, Error *err = nullptr);
AbrSubscriptionLayer GetAbrSubscriptionLayer(Error *err = nullptr);
void SetAbrFallbackLayer(AbrFallbackLayer abr_fallback_layer, Error *err = nullptr);
AbrFallbackLayer GetAbrFallbackLayer(Error *err = nullptr);
};
自从
v4.5.0
方法
SetAutoPlay
设置是否自动播放。详见 SetAutoPlay。
GetAutoPlay
获取自动播放设置。详见 GetAutoPlay。
SetAbrSubscriptionLayer
设置订阅的媒体流的质量层级。详见 SetAbrSubscriptionLayer。
GetAbrSubscriptionLayer
获取所订阅的视频流的质量层级。详见 GetAbrSubscriptionLayer。
SetAbrFallbackLayer
设置订阅的视频流的回退选项。详见 SetAbrFallbackLayer。
GetAbrFallbackLayer
获取设置的视频流回退选项。详见 GetAbrFallbackLayer。