-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathreplace-video.html
95 lines (91 loc) · 3.14 KB
/
replace-video.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PAG</title>
<link rel="icon" href="https://pag.io/img/favicon.png" />
<style>
body {
padding: 12px;
}
.header {
height: 64px;
border-bottom: 1px solid rgb(193, 193, 193);
margin-bottom: 24px;
}
</style>
</head>
<body>
<div class="header">
<img src="../assets/logo.png" alt="logo" width="133" height="48" />
</div>
<div>
<span>before:</span>
<canvas class="canvas" id="before-pag"></canvas>
<span>after:</span>
<canvas class="canvas" id="after-pag"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/libpag@latest/lib/libpag.min.js"></script>
<script>
window.onload = async () => {
const pagUrl = '../assets/snowman.pag';
const PAG = await window.libpag.PAGInit();
const buffer = await fetch(pagUrl).then((response) => response.arrayBuffer());
// Before
const beforePagFile = await PAG.PAGFile.load(buffer);
const beforeCanvas = document.getElementById('before-pag');
beforeCanvas.width = 360;
beforeCanvas.height = 360;
const beforePagView = await PAG.PAGView.init(beforePagFile, beforeCanvas);
beforePagView.setRepeatCount(0);
await beforePagView.play();
// After
const afterPagFile = await PAG.PAGFile.load(buffer);
const videoEl = document.createElement('video');
videoEl.muted = true;
// Make sure target pixel render on screen.
await loadVideoReady(videoEl, '../assets/circle.mp4');
const afterCanvas = document.getElementById('after-pag');
afterCanvas.width = 360;
afterCanvas.height = 360;
const afterPagView = await PAG.PAGView.init(afterPagFile, afterCanvas);
afterPagView.setRepeatCount(0);
// Loop to replace image
const replaceLoop = () => {
window.requestAnimationFrame(() => {
replaceLoop();
});
replaceImage();
};
const replaceImage = () => {
// Create PAGImage from ImageElement.
const pagImage = PAG.PAGImage.fromSource(videoEl);
// Replace Image by editableIndex.
// Get editableIndex demo in `editable-index.html`
afterPagFile.replaceImage(1, pagImage);
pagImage.destroy();
};
// Reset video current time to start time.
afterPagView.addListener('onAnimationRepeat', () => {
videoEl.currentTime = 0;
});
replaceLoop();
videoEl.play();
await afterPagView.play();
};
const loadVideoReady = (el, src) => {
return new Promise((resolve) => {
const listener = () => {
el.removeEventListener('canplay', listener);
console.log('canplay');
resolve(true);
};
el.addEventListener('canplay', listener);
el.src = src;
});
};
</script>
</body>
</html>