Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added HLS Layer docs #2208

Merged
merged 1 commit into from
May 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,31 @@ HMSHLSPlayerController.getStreamProperties();
> Note: In case of iOS, check the `rollingWindowTime` for getting the rolling window or duration of the stream.
> For android check the `streamDuration` property.

### How to get HLS Stream layers

- **getHLSLayers**

To get HLS Stream layers we can use the `getHLSLayers` method

```dart
var layers = await HMSHLSPlayerController.getHLSLayers();
```

To sort layers in decreasing order based on bitrate we can use the following code:

```dart
layers.sort((a, b) => (b.bitrate ?? 0).compareTo(a.bitrate ?? 0));
```

- **setHLSLayer**

To set a particular HLS layer we can use the `setHLSLayer` method

```dart
///[hmsHLSLayer] is the layer that you wish to set
HMSHLSPlayerController.setHLSLayer(hmsHLSLayer: hmsHLSLayer);
```

### How to get HLS Callbacks

HMSSDK exposes `HMSHLSPlaybackEventsListener` to get the callbacks related to HLS Playback.
Expand Down
Loading