-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.27 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rendley Integration Test</title>
<script type="importmap">
{
"imports": {
"firebase/app": "https://www.gstatic.com/firebasejs/11.2.0/firebase-app.js",
"firebase/firestore": "https://www.gstatic.com/firebasejs/11.2.0/firebase-firestore.js",
"firebase/storage": "https://www.gstatic.com/firebasejs/11.2.0/firebase-storage.js",
"@rendley/sdk": "https://cdn.rendleysdk.com/sdk/video-editor/1.0.0/dist/esm/index.js"
}
}
</script>
<script type="module">
import { defineCustomElements } from "https://cdn.rendleysdk.com/sdk/video-editor/1.0.0/loader/index.js";
defineCustomElements();
</script>
</head>
<body>
<rendley-video-editor
id="rendley"
licensename="rendley"
licensekey="3B396126BF9A20315F4F0001"
></rendley-video-editor>
<button id="serverRenderBtn" style="margin-top: 20px; padding: 10px;">
Send to Rendering Server
</button>
<button id="batchTestBtn" style="margin-top: 20px; padding: 10px; background: #4CAF50; color: white;">
Add All
</button>
<script type="module" src="./src/test-script.js"></script>
</body>
</html>