[object Object] Icon

Encoding
Learn how to create, start, manage and modify Encodings

[object Object] Icon

Player
Learn how to create, start, manage and modify Players

[object Object] Icon

Analytics
Learn how to create, start, manage and modify Analyticss

Docs Home
User shortcuts for search
Focus by pressing f
Hide results by pressing Esc
Navigate via   keys

Mon Jul 12 2021

How to set the MPD or M3U8 URL via the Analytics Configuration

Setting the manifest URL via the BitmovinAnalyticsConfigLink Icon

By default, the Analytics collector tries to auto-detect the manifest URL. However in cases where this is not possible, the URL can be overwritten via the BitmovinAnalyticsConfig.

1BitmovinAnalyticsConfig config = new BitmovinAnalyticsConfig("YOUR_LICENSE_KEY");
2// Set MPD URL
3config.setMpdUrl("MANIFEST_URL");
4
5// Set M3U8 URL
6config.setM3u8Url("MANIFEST_URL");

Please only use one of the above methods to the set the manifest URL.

Give us feedback