Setting the manifest URL via the BitmovinAnalyticsConfig
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 URL3config.setMpdUrl("MANIFEST_URL");45// Set M3U8 URL6config.setM3u8Url("MANIFEST_URL");
Please only use one of the above methods to the set the manifest URL.