mfx
Version:
In-browser video editing toolkit, with effects accelerated by WebGL
30 lines (28 loc) • 792 B
HTML
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300..600&display=swap" rel="stylesheet">
<style>
* {
font-family: Inter;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #000;
color: white;
}
</style>
<title>MFX Video Editor Demo</title>
</head>
<body></body>
</html>