48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<html>
|
|
<head>
|
|
<script src="/dist/ffmpeg.dev.js"></script>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%
|
|
}
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Upload a video to transcode to mp4 (x264) and play!</h3>
|
|
<video id="output-video" controls></video><br/>
|
|
<input type="file" id="uploader">
|
|
<p id="message"></p>
|
|
<script>
|
|
const { createWorker } = FFmpeg;
|
|
const worker = createWorker({
|
|
corePath: '../../node_modules/@ffmpeg/core/ffmpeg-core.js',
|
|
logger: ({ message }) => console.log(message),
|
|
});
|
|
|
|
const transcode = async ({ target: { files } }) => {
|
|
const message = document.getElementById('message');
|
|
const { name } = files[0];
|
|
message.innerHTML = 'Loading ffmpeg-core.js';
|
|
await worker.load();
|
|
message.innerHTML = 'Start transcoding';
|
|
await worker.write(name, files[0]);
|
|
await worker.transcode(name, 'output.mp4');
|
|
message.innerHTML = 'Complete transcoding';
|
|
const { data } = await worker.read('output.mp4');
|
|
|
|
const video = document.getElementById('output-video');
|
|
video.src = URL.createObjectURL(new Blob([data.buffer], { type: 'video/mp4' }));
|
|
}
|
|
const elm = document.getElementById('uploader');
|
|
elm.addEventListener('change', transcode);
|
|
</script>
|
|
</body>
|
|
</html>
|