@besovideo/webrtc-player 0.10.8 → 0.10.9
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/main.browser.css +1 -1
- package/dist/main.browser.js +1 -7
- package/dist/main.es.css +1 -1
- package/dist/main.es.js +1 -7
- package/package.json +2 -1
package/dist/main.browser.css
CHANGED
package/dist/main.browser.js
CHANGED
|
@@ -124,7 +124,7 @@ var bvPlayerCore = (() => {
|
|
|
124
124
|
var define_processenv_default;
|
|
125
125
|
var init_define_processenv = __esm({
|
|
126
126
|
"<define:processenv>"() {
|
|
127
|
-
define_processenv_default = { NODE_ENV: "production", SH_LIB_NAME: "@besovideo/webrtc-player", SH_LIB_VERSION: "0.10.
|
|
127
|
+
define_processenv_default = { NODE_ENV: "production", SH_LIB_NAME: "@besovideo/webrtc-player", SH_LIB_VERSION: "0.10.9", PROJECT_NAMESPACE: "bvplayer" };
|
|
128
128
|
}
|
|
129
129
|
});
|
|
130
130
|
|
|
@@ -29294,9 +29294,6 @@ ${event.candidate ? event.candidate.candidate : "(null)"}`
|
|
|
29294
29294
|
}
|
|
29295
29295
|
recordStart() {
|
|
29296
29296
|
var _a, _b;
|
|
29297
|
-
if (!HTMLMediaElement.prototype.captureStream) {
|
|
29298
|
-
return;
|
|
29299
|
-
}
|
|
29300
29297
|
if (!this._recordState.BRecording()) {
|
|
29301
29298
|
if ((_a = this._panel) == null ? void 0 : _a.controller.RecordButton) {
|
|
29302
29299
|
(_b = this._panel) == null ? void 0 : _b.controller.RecordButton.dispatch("click");
|
|
@@ -29312,9 +29309,6 @@ ${event.candidate ? event.candidate.candidate : "(null)"}`
|
|
|
29312
29309
|
}
|
|
29313
29310
|
recordStop() {
|
|
29314
29311
|
var _a, _b;
|
|
29315
|
-
if (!HTMLMediaElement.prototype.captureStream) {
|
|
29316
|
-
return;
|
|
29317
|
-
}
|
|
29318
29312
|
if (this._recordState.BRecording()) {
|
|
29319
29313
|
if ((_a = this._panel) == null ? void 0 : _a.controller.RecordButton) {
|
|
29320
29314
|
(_b = this._panel) == null ? void 0 : _b.controller.RecordButton.dispatch("click");
|
package/dist/main.es.css
CHANGED
package/dist/main.es.js
CHANGED
|
@@ -118,7 +118,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
118
118
|
var define_processenv_default;
|
|
119
119
|
var init_define_processenv = __esm({
|
|
120
120
|
"<define:processenv>"() {
|
|
121
|
-
define_processenv_default = { NODE_ENV: "production", SH_LIB_NAME: "@besovideo/webrtc-player", SH_LIB_VERSION: "0.10.
|
|
121
|
+
define_processenv_default = { NODE_ENV: "production", SH_LIB_NAME: "@besovideo/webrtc-player", SH_LIB_VERSION: "0.10.9", PROJECT_NAMESPACE: "bvplayer" };
|
|
122
122
|
}
|
|
123
123
|
});
|
|
124
124
|
|
|
@@ -29277,9 +29277,6 @@ var PlayerPlugin = class extends Plugin {
|
|
|
29277
29277
|
}
|
|
29278
29278
|
recordStart() {
|
|
29279
29279
|
var _a, _b;
|
|
29280
|
-
if (!HTMLMediaElement.prototype.captureStream) {
|
|
29281
|
-
return;
|
|
29282
|
-
}
|
|
29283
29280
|
if (!this._recordState.BRecording()) {
|
|
29284
29281
|
if ((_a = this._panel) == null ? void 0 : _a.controller.RecordButton) {
|
|
29285
29282
|
(_b = this._panel) == null ? void 0 : _b.controller.RecordButton.dispatch("click");
|
|
@@ -29295,9 +29292,6 @@ var PlayerPlugin = class extends Plugin {
|
|
|
29295
29292
|
}
|
|
29296
29293
|
recordStop() {
|
|
29297
29294
|
var _a, _b;
|
|
29298
|
-
if (!HTMLMediaElement.prototype.captureStream) {
|
|
29299
|
-
return;
|
|
29300
|
-
}
|
|
29301
29295
|
if (this._recordState.BRecording()) {
|
|
29302
29296
|
if ((_a = this._panel) == null ? void 0 : _a.controller.RecordButton) {
|
|
29303
29297
|
(_b = this._panel) == null ? void 0 : _b.controller.RecordButton.dispatch("click");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@besovideo/webrtc-player",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.9",
|
|
4
4
|
"description": "@besovideo/webrtc-player desc",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/types/main.d.ts",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@shirtiny/logger": "^2.1.13",
|
|
67
|
+
"eruda": "^3.4.3",
|
|
67
68
|
"i18next": "^21.8.14",
|
|
68
69
|
"mp4box": "^0.5.3",
|
|
69
70
|
"tippy.js": "^6.3.7",
|