bitmovin-analytics 2.29.1-beta1 → 2.29.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/bitmovin-analytics.d.ts +1 -10
- package/bitmovinanalytics.min.js +2 -2
- package/bitmovinanalytics.min.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
# Bitmovin Analytics Collector
|
|
2
2
|
|
|
3
|
+
[](https://dl.circleci.com/status-badge/redirect/gh/bitmovin-engineering/bitmovin-analytics-collector/tree/main)
|
|
4
|
+
|
|
3
5
|
Instruments adaptive streaming video players and collects information to be sent to the Bitmovin Analytics service.
|
|
4
6
|
|
|
5
7
|
To get started collecting data with Bitmovin Analytics you need a License-Key which you can get for free by signing up for a [free Bitmovin account](https://bitmovin.com/dashboard/signup).
|
|
6
8
|
|
|
7
9
|
## Supported Players
|
|
8
10
|
|
|
9
|
-
The supported video players are shown here: [Analytics Collectors - HTML5](https://bitmovin.com/docs/analytics
|
|
11
|
+
The supported video players are shown here: [Analytics Collectors - HTML5](https://developer.bitmovin.com/playback/docs/analytics-collectors#html5-collectors)
|
|
10
12
|
|
|
11
13
|
## Usage
|
|
12
14
|
|
|
13
|
-
[A getting started guide](https://bitmovin.com/docs/
|
|
15
|
+
[A getting started guide](https://developer.bitmovin.com/playback/docs/setup-analytics-web#bitmovin-player) on how to integrate Bitmovin Analytics Collector with the Bitmovin Player is available on our homepage.
|
|
14
16
|
|
|
15
|
-
For more comprehensive integration documentation please consult the [Bitmovin Analytics documentation](https://bitmovin.com/docs/analytics
|
|
17
|
+
For more comprehensive integration documentation please consult the [Bitmovin Analytics documentation](https://developer.bitmovin.com/playback/docs/setup-analytics).
|
|
16
18
|
|
|
17
19
|
### Integrating Bitmovin 8
|
|
18
20
|
|
package/bitmovin-analytics.d.ts
CHANGED
|
@@ -561,14 +561,6 @@ declare abstract class Adapter {
|
|
|
561
561
|
protected markPlayerInstanceAsAugmented(player: any): void;
|
|
562
562
|
private guardAgainstNotInitializedAnalytics;
|
|
563
563
|
}
|
|
564
|
-
/**
|
|
565
|
-
* @deprecated Please update to Bitmovin Player v8 and use the new {@link Bitmovin8Adapter} instead.
|
|
566
|
-
*/
|
|
567
|
-
export declare class Bitmovin7Adapter extends Adapter implements AdapterAPI {
|
|
568
|
-
constructor(player: any, opts?: AnalyticsStateMachineOptions);
|
|
569
|
-
private augment;
|
|
570
|
-
private wrapPlayerLoad;
|
|
571
|
-
}
|
|
572
564
|
export declare class Bitmovin8Adapter extends Adapter implements AdapterAPI {
|
|
573
565
|
constructor(player: any, opts?: AnalyticsStateMachineOptions);
|
|
574
566
|
private wrapPlayerLoad;
|
|
@@ -614,7 +606,7 @@ declare enum Player {
|
|
|
614
606
|
CHROMECAST_SHAKA = "chromecast-shaka"
|
|
615
607
|
}
|
|
616
608
|
declare const VERSION: string;
|
|
617
|
-
declare const
|
|
609
|
+
declare const AnalyticsPlayerModule: {
|
|
618
610
|
name: string;
|
|
619
611
|
module: {
|
|
620
612
|
Analytics: typeof Bitmovin8Adapter;
|
|
@@ -626,7 +618,6 @@ declare const AnalyticsModule: {
|
|
|
626
618
|
export declare const adapters: {
|
|
627
619
|
HlsAdapter: typeof HlsAdapter;
|
|
628
620
|
Bitmovin8Adapter: typeof Bitmovin8Adapter;
|
|
629
|
-
Bitmovin7Adapter: typeof Bitmovin7Adapter;
|
|
630
621
|
VideojsAdapter: typeof VideojsAdapter;
|
|
631
622
|
ShakaAdapter: typeof ShakaAdapter;
|
|
632
623
|
DashjsAdapter: typeof DashjsAdapter;
|