-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
112 lines (90 loc) · 2.91 KB
/
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width" />
<title>jQuery</title>
<link rel="icon" href="favicon.ico" />
<!-- pintura -->
<link rel="stylesheet" href="./node_modules/@pqina/pintura/pintura.css" />
<!-- pintura video -->
<link
rel="stylesheet"
href="./node_modules/@pqina/pintura-video/pinturavideo.css"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<h1>Pintura Image Editor</h1>
<ul>
<li><a href="/index.html">Append</a></li>
<li><a href="/modal.html">Modal</a></li>
<li><a href="/overlay.html">Overlay</a></li>
<li><a href="/filepond.html">FilePond</a></li>
<li><a href="/video.html">Video</a></li>
</ul>
<p>
Please note that the video editor extension is only available on the PQINA
private npm and requires purchasing a license.
</p>
<div class="inline-editor" style="height: 70vh"></div>
<p><video class="inline-result" src="" controls /></p>
<script src="./jquery.js"></script>
<script src="./node_modules/@pqina/pintura/pintura-iife.js"></script>
<script src="./node_modules/@pqina/pintura-video/pinturavideo-iife.js"></script>
<script src="./node_modules/@pqina/jquery-pintura/dist/useEditorWithJQuery-iife.js"></script>
<script>
// load Pintura adapter
useEditorWithJQuery(jQuery, pintura);
var {
plugin_trim,
plugin_trim_locale_en_gb,
createDefaultVideoWriter,
createMediaStreamEncoder,
} = pinturavideo;
var {
setPlugins,
createDefaultImageWriter,
createDefaultMediaWriter,
imageStateToCanvas,
} = pintura;
// load trim plugin
setPlugins(plugin_trim);
// reate editor
var editor = $(".inline-editor").pinturaDefault({
src: "./video.mp4",
imageCropAspectRatio: 1,
imageWriter: createDefaultMediaWriter(
// Generic Media Writer options, passed to image and video writer
{
targetSize: {
width: 400,
},
},
[
// For handling images
createDefaultImageWriter(),
// For handling videos
createDefaultVideoWriter({
// Video writer instructions here
// ...
// Encoder to use
encoder: createMediaStreamEncoder({
imageStateToCanvas,
}),
}),
]
),
// add video locale
locale: plugin_trim_locale_en_gb,
});
$(".inline-editor").on("pintura:load", (e) =>
console.log("inline load", e)
);
$(".inline-editor").on("pintura:process", (e) => {
console.log("inline process", e);
$(".inline-result").attr("src", URL.createObjectURL(e.detail.dest));
});
</script>
</body>
</html>