easyproctor 0.0.13 → 0.0.14
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/esm/index.js +2 -2
- package/index.js +2 -2
- package/package.json +35 -35
- package/unpkg/easyproctor.min.js +5 -5
package/esm/index.js
CHANGED
|
@@ -240,8 +240,8 @@ function useProctoring(proctoringOptions) {
|
|
|
240
240
|
if (finalCameraBuffer.length == 0 || finalScreenBuffer.length == 0) {
|
|
241
241
|
throw "N\xE3o existe nenhuma grava\xE7\xE3o iniciada";
|
|
242
242
|
}
|
|
243
|
-
const cameraFileName = `EP_${
|
|
244
|
-
const screenFIleName = `EP_${
|
|
243
|
+
const cameraFileName = `EP_${proctoringId}_${time}_camera_0.webm`;
|
|
244
|
+
const screenFIleName = `EP_${proctoringId}_${time}_screen_0.webm`;
|
|
245
245
|
const cameraFile = new File(finalCameraBuffer, cameraFileName, { type: "video/webm" });
|
|
246
246
|
const screenFile = new File(finalScreenBuffer, screenFIleName, { type: "video/webm" });
|
|
247
247
|
let cameraProgress = 0;
|
package/index.js
CHANGED
|
@@ -270,8 +270,8 @@ function useProctoring(proctoringOptions) {
|
|
|
270
270
|
if (finalCameraBuffer.length == 0 || finalScreenBuffer.length == 0) {
|
|
271
271
|
throw "N\xE3o existe nenhuma grava\xE7\xE3o iniciada";
|
|
272
272
|
}
|
|
273
|
-
const cameraFileName = `EP_${
|
|
274
|
-
const screenFIleName = `EP_${
|
|
273
|
+
const cameraFileName = `EP_${proctoringId}_${time}_camera_0.webm`;
|
|
274
|
+
const screenFIleName = `EP_${proctoringId}_${time}_screen_0.webm`;
|
|
275
275
|
const cameraFile = new File(finalCameraBuffer, cameraFileName, { type: "video/webm" });
|
|
276
276
|
const screenFile = new File(finalScreenBuffer, screenFIleName, { type: "video/webm" });
|
|
277
277
|
let cameraProgress = 0;
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "easyproctor",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Modulo web de gravação do EasyProctor",
|
|
5
|
-
"main": "./index.js",
|
|
6
|
-
"module": "./esm/index.js",
|
|
7
|
-
"unpkg": "./unpkg/easyproctor.min.js",
|
|
8
|
-
"types": "./index.d.ts",
|
|
9
|
-
"keywords": [
|
|
10
|
-
"proctoring"
|
|
11
|
-
],
|
|
12
|
-
"homepage": "https://vsoft1.visualstudio.com/DefaultCollection/Iaris/_git/easyproctor-proctoring-componentJs",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://vsoft1.visualstudio.com/DefaultCollection/Iaris/_git/easyproctor-proctoring-componentJs"
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "node scripts/build.js && tsc",
|
|
19
|
-
"dev": "node scripts/serve.js -w"
|
|
20
|
-
},
|
|
21
|
-
"author": "Igor Dantas",
|
|
22
|
-
"license": "ISC",
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@types/dom-mediacapture-record": "^1.0.11",
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
26
|
-
"@typescript-eslint/parser": "^5.8.0",
|
|
27
|
-
"esbuild": "^0.13.13",
|
|
28
|
-
"esbuild-serve": "^1.0.1",
|
|
29
|
-
"eslint": "^8.2.0",
|
|
30
|
-
"typescript": "^4.5.4"
|
|
31
|
-
},
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"@azure/storage-blob": "^12.8.0"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "easyproctor",
|
|
3
|
+
"version": "0.0.14",
|
|
4
|
+
"description": "Modulo web de gravação do EasyProctor",
|
|
5
|
+
"main": "./index.js",
|
|
6
|
+
"module": "./esm/index.js",
|
|
7
|
+
"unpkg": "./unpkg/easyproctor.min.js",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"proctoring"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://vsoft1.visualstudio.com/DefaultCollection/Iaris/_git/easyproctor-proctoring-componentJs",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://vsoft1.visualstudio.com/DefaultCollection/Iaris/_git/easyproctor-proctoring-componentJs"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "node scripts/build.js && tsc",
|
|
19
|
+
"dev": "node scripts/serve.js -w"
|
|
20
|
+
},
|
|
21
|
+
"author": "Igor Dantas",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/dom-mediacapture-record": "^1.0.11",
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
26
|
+
"@typescript-eslint/parser": "^5.8.0",
|
|
27
|
+
"esbuild": "^0.13.13",
|
|
28
|
+
"esbuild-serve": "^1.0.1",
|
|
29
|
+
"eslint": "^8.2.0",
|
|
30
|
+
"typescript": "^4.5.4"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@azure/storage-blob": "^12.8.0"
|
|
34
|
+
}
|
|
35
|
+
}
|