LiveStreamAdvancedFeature
Advanced configuration for transcoding live streaming.
public class LiveStreamAdvancedFeature
{
public LiveStreamAdvancedFeature()
{
featureName = null;
opened = false;
}
public LiveStreamAdvancedFeature(string feat_name, bool open)
{
featureName = feat_name;
opened = open;
}
public string featureName { set; get; }
public bool opened { set; get; }
};
To use advanced features for transcoding live streaming, please [contact sales](mailto:support@agora.io).
Properties
- featureName
- The name of the advanced transcoding live streaming feature, including LBHQ (low-bitrate high-quality video) and VEO (optimized video encoder).
- opened
- Whether to enable the advanced transcoding live streaming feature:
- true: Enables the advanced transcoding live streaming feature.
- false: (Default) Disables the advanced transcoding live streaming feature.