@gcorevideo/player 2.26.4 → 2.26.5
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/dist/core.js +432 -432
- package/dist/index.css +878 -878
- package/dist/index.embed.js +434 -445
- package/dist/index.js +435 -446
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +0 -11
- package/package.json +1 -1
- package/src/plugins/source-controller/SourceController.ts +0 -11
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SourceController.d.ts","sourceRoot":"","sources":["../../../src/plugins/source-controller/SourceController.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,KAAK,IAAI,IAAI,UAAU,EACxB,MAAM,cAAc,CAAA;AAwBrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,qBAAa,gBAAiB,SAAQ,UAAU;IAwC9C,OAAO,CAAC,WAAW,CAA8B;IAEjD,OAAO,CAAC,kBAAkB,CAAI;IAE9B,OAAO,CAAC,YAAY,CAA6B;IAEjD,OAAO,CAAC,MAAM,CAAQ;IAEtB,OAAO,CAAC,QAAQ,CAAQ;IAExB,OAAO,CAAC,SAAS,CAAQ;IAEzB,OAAO,CAAC,IAAI,CAAiB;IAE7B;;OAEG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,gBAAgB;;MAEnB;IAED;;OAEG;gBACS,IAAI,EAAE,UAAU;IAW5B;;OAEG;IACM,UAAU;IAWnB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,wBAAwB;IAgBhC,OAAO,CAAC,2BAA2B;
|
|
1
|
+
{"version":3,"file":"SourceController.d.ts","sourceRoot":"","sources":["../../../src/plugins/source-controller/SourceController.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,KAAK,IAAI,IAAI,UAAU,EACxB,MAAM,cAAc,CAAA;AAwBrB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,qBAAa,gBAAiB,SAAQ,UAAU;IAwC9C,OAAO,CAAC,WAAW,CAA8B;IAEjD,OAAO,CAAC,kBAAkB,CAAI;IAE9B,OAAO,CAAC,YAAY,CAA6B;IAEjD,OAAO,CAAC,MAAM,CAAQ;IAEtB,OAAO,CAAC,QAAQ,CAAQ;IAExB,OAAO,CAAC,SAAS,CAAQ;IAEzB,OAAO,CAAC,IAAI,CAAiB;IAE7B;;OAEG;IACH,IAAI,IAAI,WAEP;IAED;;OAEG;IACH,IAAI,gBAAgB;;MAEnB;IAED;;OAEG;gBACS,IAAI,EAAE,UAAU;IAW5B;;OAEG;IACM,UAAU;IAWnB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,wBAAwB;IAgBhC,OAAO,CAAC,2BAA2B;IAiDnC,OAAO,CAAC,KAAK;IAKb,OAAO,CAAC,aAAa;IAgCrB,OAAO,CAAC,kBAAkB;IAe1B;;OAEG;IACH,MAAM,KAAK,OAAO,WAEjB;CACF"}
|
|
@@ -191,17 +191,6 @@ export class SourceController extends CorePlugin {
|
|
|
191
191
|
break;
|
|
192
192
|
}
|
|
193
193
|
});
|
|
194
|
-
// this.core.activePlayback.on(Events.PLAYBACK_PLAY, () => {
|
|
195
|
-
// trace(`${T} on PLAYBACK_PLAY`, {
|
|
196
|
-
// currentSource: this.sourcesList[this.currentSourceIndex],
|
|
197
|
-
// retrying: this.active,
|
|
198
|
-
// })
|
|
199
|
-
// if (this.active) {
|
|
200
|
-
// this.reset()
|
|
201
|
-
// this.core.activeContainer?.getPlugin('poster')?.enable()
|
|
202
|
-
// this.core.activeContainer?.getPlugin('spinner')?.hide()
|
|
203
|
-
// }
|
|
204
|
-
// })
|
|
205
194
|
this.listenTo(this.core.activeContainer, Events.CONTAINER_PLAY, (_, { autoPlay }) => {
|
|
206
195
|
trace(`${T} onContainerPlay`, {
|
|
207
196
|
autoPlay,
|
package/package.json
CHANGED
|
@@ -225,17 +225,6 @@ export class SourceController extends CorePlugin {
|
|
|
225
225
|
}
|
|
226
226
|
},
|
|
227
227
|
)
|
|
228
|
-
// this.core.activePlayback.on(Events.PLAYBACK_PLAY, () => {
|
|
229
|
-
// trace(`${T} on PLAYBACK_PLAY`, {
|
|
230
|
-
// currentSource: this.sourcesList[this.currentSourceIndex],
|
|
231
|
-
// retrying: this.active,
|
|
232
|
-
// })
|
|
233
|
-
// if (this.active) {
|
|
234
|
-
// this.reset()
|
|
235
|
-
// this.core.activeContainer?.getPlugin('poster')?.enable()
|
|
236
|
-
// this.core.activeContainer?.getPlugin('spinner')?.hide()
|
|
237
|
-
// }
|
|
238
|
-
// })
|
|
239
228
|
this.listenTo(
|
|
240
229
|
this.core.activeContainer,
|
|
241
230
|
Events.CONTAINER_PLAY,
|