Add result screen, refactor css, make mobile friendly
This commit is contained in:
parent
b9389df7cb
commit
efa508746b
@ -4,6 +4,11 @@ export class ProgressBar {
|
|||||||
this.indicator = document.getElementById("progress-indicator");
|
this.indicator = document.getElementById("progress-indicator");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setStatus(status) {
|
||||||
|
this.percentage.innerText = status;
|
||||||
|
this.indicator.style.clipPath = "rect(0 0 100% 0)";
|
||||||
|
}
|
||||||
|
|
||||||
setProgress(progress) {
|
setProgress(progress) {
|
||||||
const percent = (progress * 100).toFixed(1) + "%";
|
const percent = (progress * 100).toFixed(1) + "%";
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,7 @@ export class VideoCompressor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async compress(file, filesizeBytes, duration) {
|
async compress(file, filesizeBytes, duration) {
|
||||||
this.progressBar.setProgress(0);
|
this.progressBar.setStatus("Initializing...");
|
||||||
this.inProgress = true;
|
this.inProgress = true;
|
||||||
|
|
||||||
const progressCallback = event => this.progressBar.setProgress(event.progress);
|
const progressCallback = event => this.progressBar.setProgress(event.progress);
|
||||||
@ -47,13 +47,13 @@ export class VideoCompressor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const video = await this.ffmpeg.readFile("compressed.mp4");
|
const video = await this.ffmpeg.readFile("compressed.mp4");
|
||||||
const url = URL.createObjectURL(new Blob([video.buffer], { type: "video/mp4" }));
|
const resultFile = new File([video.buffer], this.generateFileName(file.name), { type: "video/mp4" });
|
||||||
|
|
||||||
// Clean up
|
// Clean up
|
||||||
this.ffmpeg.off("progress", progressCallback);
|
this.ffmpeg.off("progress", progressCallback);
|
||||||
this.inProgress = false;
|
this.inProgress = false;
|
||||||
|
|
||||||
return url;
|
return resultFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
@ -61,6 +61,15 @@ export class VideoCompressor {
|
|||||||
this.inProgress = false;
|
this.inProgress = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generateFileName(filename) {
|
||||||
|
let name = filename.replace(/\.\w+$/, "");
|
||||||
|
|
||||||
|
if (/\s/.test(name)) name += " compressed";
|
||||||
|
else name += "_compressed";
|
||||||
|
|
||||||
|
return name + ".mp4";
|
||||||
|
}
|
||||||
|
|
||||||
// https://github.com/ffmpegwasm/ffmpeg.wasm/blob/main/packages/util/src/index.ts
|
// https://github.com/ffmpegwasm/ffmpeg.wasm/blob/main/packages/util/src/index.ts
|
||||||
readFromBlob(blob) {
|
readFromBlob(blob) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
|||||||
@ -8,12 +8,16 @@ const videoCompressor = new VideoCompressor(progressBar);
|
|||||||
|
|
||||||
document.getElementById("compress").onclick = async () => {
|
document.getElementById("compress").onclick = async () => {
|
||||||
document.getElementById("uploaded-video").pause();
|
document.getElementById("uploaded-video").pause();
|
||||||
showSection("loading");
|
|
||||||
|
|
||||||
const filesize = document.getElementById("filesize").value;
|
const filesize = document.getElementById("filesize").value;
|
||||||
const filesizeUnit = document.getElementById("filesize-unit").value;
|
const filesizeUnit = document.getElementById("filesize-unit").value;
|
||||||
const file = document.getElementById("file-input").files[0];
|
const file = document.getElementById("file-input").files[0];
|
||||||
|
|
||||||
|
if (!file) {
|
||||||
|
alert("Please select a file");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const videoLength = document.getElementById("uploaded-video").duration;
|
const videoLength = document.getElementById("uploaded-video").duration;
|
||||||
|
|
||||||
let targetFilesize;
|
let targetFilesize;
|
||||||
@ -22,19 +26,50 @@ document.getElementById("compress").onclick = async () => {
|
|||||||
case "mb": targetFilesize = filesize * 1000000; break;
|
case "mb": targetFilesize = filesize * 1000000; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
showSection("loading");
|
||||||
|
|
||||||
|
let result;
|
||||||
try {
|
try {
|
||||||
const url = await videoCompressor.compress(file, targetFilesize, videoLength);
|
result = await videoCompressor.compress(file, targetFilesize, videoLength);
|
||||||
|
|
||||||
if (!url) return;
|
|
||||||
|
|
||||||
notifier.notifyFinished();
|
|
||||||
|
|
||||||
location.href = url;
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
alert(e.message);
|
alert(e.message);
|
||||||
|
|
||||||
showSection("file-picker");
|
showSection("file-picker");
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!result) return;
|
||||||
|
|
||||||
|
notifier.notifyFinished();
|
||||||
|
|
||||||
|
const url = URL.createObjectURL(result);
|
||||||
|
|
||||||
|
document.getElementById("compressed-video").src = url;
|
||||||
|
document.getElementById("compressed-video").load();
|
||||||
|
|
||||||
|
document.getElementById("result-size").innerText = bytesToSizeString(result.size);
|
||||||
|
|
||||||
|
document.getElementById("download").onclick = () => {
|
||||||
|
const a = document.createElement("a");
|
||||||
|
a.href = url;
|
||||||
|
a.download = result.name;
|
||||||
|
a.click();
|
||||||
|
};
|
||||||
|
|
||||||
|
const shareData = {
|
||||||
|
text: "Compressed using " + window.origin,
|
||||||
|
files: [result],
|
||||||
|
};
|
||||||
|
|
||||||
|
if (navigator.share && (!navigator.canShare || navigator.canShare(shareData))) {
|
||||||
|
document.getElementById("share").style.display = "inline-block";
|
||||||
|
document.getElementById("share").onclick = () => navigator.share(shareData);
|
||||||
|
} else {
|
||||||
|
document.getElementById("share").style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
showSection("result");
|
||||||
};
|
};
|
||||||
|
|
||||||
document.getElementById("cancel").onclick = () => {
|
document.getElementById("cancel").onclick = () => {
|
||||||
@ -67,6 +102,17 @@ document.getElementById("file-input").oninput = () => {
|
|||||||
}, 200);
|
}, 200);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
document.getElementById("back").onclick = () => {
|
||||||
|
showSection("file-picker");
|
||||||
|
};
|
||||||
|
|
||||||
window.onbeforeunload = event => {
|
window.onbeforeunload = event => {
|
||||||
if (videoCompressor.inProgress) event.preventDefault();
|
if (videoCompressor.inProgress) event.preventDefault();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function bytesToSizeString(bytes) {
|
||||||
|
if (bytes >= 1000000000) return (bytes / 1000000000).toFixed(1) + " GB";
|
||||||
|
if (bytes >= 1000000) return (bytes / 1000000).toFixed(1) + " MB";
|
||||||
|
if (bytes >= 1000) return (bytes / 1000).toFixed(1) + " KB";
|
||||||
|
return bytes + " B";
|
||||||
|
}
|
||||||
|
|||||||
@ -1,200 +0,0 @@
|
|||||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #F0F0F0;
|
|
||||||
font-family: "Open Sans", sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
*::selection {
|
|
||||||
background-color: #00BCD4;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
background-image: linear-gradient(to right, #4CAF50, #4CAF50 40%, #00BCD4 60%);
|
|
||||||
background-clip: text;
|
|
||||||
color: transparent;
|
|
||||||
font-size: 3rem;
|
|
||||||
margin-top: 3rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
color: #9E9E9E;
|
|
||||||
font-size: 0.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
opacity: 1;
|
|
||||||
transition: opacity 300ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
video {
|
|
||||||
width: 355px;
|
|
||||||
height: 200px;
|
|
||||||
border: 2px solid #212121;
|
|
||||||
background-color: black;
|
|
||||||
border-radius: 1rem;
|
|
||||||
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
#file-input, #change-file {
|
|
||||||
display: none;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#file-input-spacing * {
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
#file-drop-area {
|
|
||||||
max-width: 355px;
|
|
||||||
height: 198px;
|
|
||||||
border: 3px dotted #BDBDBD;
|
|
||||||
margin: 3rem auto 1rem auto;
|
|
||||||
border-radius: 1rem;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
transition: all 300ms;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
#file-drop-area span {
|
|
||||||
color: #9E9E9E;
|
|
||||||
}
|
|
||||||
|
|
||||||
#file-drop-area:hover, #file-drop-area:focus {
|
|
||||||
background-color: #E0E0E0;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#uploaded-video {
|
|
||||||
display: none;
|
|
||||||
opacity: 0;
|
|
||||||
margin: 3rem auto 1rem auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.primary {
|
|
||||||
background-image: linear-gradient(to right, #4CAF50, #00BCD4);
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
|
|
||||||
font-weight: bold;
|
|
||||||
transition: all ease-in 100ms;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.primary:hover {
|
|
||||||
filter: brightness(1.1);
|
|
||||||
}
|
|
||||||
|
|
||||||
button.primary:active {
|
|
||||||
filter: brightness(0.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
button.primary:focus {
|
|
||||||
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
|
|
||||||
outline: 2px solid black;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.simple {
|
|
||||||
border: 1px solid #9E9E9E;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
background-color: transparent;
|
|
||||||
transition: all 100ms;
|
|
||||||
cursor: pointer;
|
|
||||||
color: #9E9E9E;
|
|
||||||
margin: 1rem auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.simple:hover {
|
|
||||||
color: black;
|
|
||||||
border-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.simple:focus {
|
|
||||||
border-color: black;
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
input, select {
|
|
||||||
background-color: white;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
border: 1px solid #BDBDBD;
|
|
||||||
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
|
|
||||||
transition: all ease-in 100ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus, select:focus {
|
|
||||||
outline: none;
|
|
||||||
border: 1px solid #00BCD4;
|
|
||||||
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
input[type=checkbox] {
|
|
||||||
accent-color: #4CAF50;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
color: #757575;
|
|
||||||
}
|
|
||||||
|
|
||||||
#filesize {
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
border-bottom-right-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#filesize-unit {
|
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-bottom-left-radius: 0;
|
|
||||||
border-left: 1px solid white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#filesize-unit:focus {
|
|
||||||
border-left: 1px solid #00BCD4;
|
|
||||||
}
|
|
||||||
|
|
||||||
#compress {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#loading-title {
|
|
||||||
color: #757575;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-top: 4rem;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#loading-description {
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#progress-container {
|
|
||||||
width: 80vw;
|
|
||||||
height: 2rem;
|
|
||||||
max-width: 500px;
|
|
||||||
border-radius: 2rem;
|
|
||||||
margin: 3rem auto auto;
|
|
||||||
background-color: #E0E0E0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#progress-indicator {
|
|
||||||
position: absolute;
|
|
||||||
inset: 0;
|
|
||||||
background-image: linear-gradient(to right, #4CAF50, #00BCD4);
|
|
||||||
border-radius: 2rem;
|
|
||||||
transition: clip-path 200ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
#progress-percentage {
|
|
||||||
color: #757575;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
}
|
|
||||||
56
public/assets/styles/file-picker-section.css
Normal file
56
public/assets/styles/file-picker-section.css
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#file-input, #change-file {
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#file-input-spacing * {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#file-drop-area {
|
||||||
|
max-width: 355px;
|
||||||
|
height: 198px;
|
||||||
|
border: 3px dotted #BDBDBD;
|
||||||
|
margin: 3rem auto 1rem auto;
|
||||||
|
border-radius: 1rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
transition: all 300ms;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#file-drop-area span {
|
||||||
|
color: #9E9E9E;
|
||||||
|
}
|
||||||
|
|
||||||
|
#file-drop-area:hover, #file-drop-area:focus {
|
||||||
|
background-color: #E0E0E0;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#uploaded-video {
|
||||||
|
display: none;
|
||||||
|
opacity: 0;
|
||||||
|
margin: 3rem auto 1rem auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filesize {
|
||||||
|
border-top-right-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
width: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filesize-unit {
|
||||||
|
border-top-left-radius: 0;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-left: 1px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#filesize-unit:focus {
|
||||||
|
border-left: 1px solid #00BCD4;
|
||||||
|
}
|
||||||
|
|
||||||
|
#compress {
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
35
public/assets/styles/loading-section.css
Normal file
35
public/assets/styles/loading-section.css
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
#loading-title {
|
||||||
|
color: #757575;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top: 4rem;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loading-description {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress-container {
|
||||||
|
width: 80vw;
|
||||||
|
height: 2rem;
|
||||||
|
max-width: 500px;
|
||||||
|
border-radius: 2rem;
|
||||||
|
margin: 3rem auto auto;
|
||||||
|
background-color: #E0E0E0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress-indicator {
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background-image: linear-gradient(to right, #4CAF50, #00BCD4);
|
||||||
|
border-radius: 2rem;
|
||||||
|
transition: clip-path 200ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
#progress-percentage {
|
||||||
|
color: #757575;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
41
public/assets/styles/main.css
Normal file
41
public/assets/styles/main.css
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #F0F0F0;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::selection {
|
||||||
|
background-color: #00BCD4;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
background-image: linear-gradient(to right, #4CAF50, #4CAF50 40%, #00BCD4 60%);
|
||||||
|
background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
font-size: 3rem;
|
||||||
|
margin-top: 3rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: #9E9E9E;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 300ms;
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
video {
|
||||||
|
width: 355px;
|
||||||
|
height: 200px;
|
||||||
|
border: 2px solid #212121;
|
||||||
|
background-color: black;
|
||||||
|
border-radius: 1rem;
|
||||||
|
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
25
public/assets/styles/result-section.css
Normal file
25
public/assets/styles/result-section.css
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#result-section {
|
||||||
|
display: flex;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#result-title {
|
||||||
|
color: #757575;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
margin-top: 2.5rem;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#compressed-video {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#download, #share {
|
||||||
|
width: 120px;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#back {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
78
public/assets/styles/ui.css
Normal file
78
public/assets/styles/ui.css
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.primary {
|
||||||
|
background-image: linear-gradient(to right, #4CAF50, #00BCD4);
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
|
||||||
|
font-weight: bold;
|
||||||
|
transition: all ease-in 100ms;
|
||||||
|
height: 37px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.primary:hover {
|
||||||
|
filter: brightness(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.primary:active {
|
||||||
|
filter: brightness(0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
button.primary:focus {
|
||||||
|
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
|
||||||
|
outline: 2px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.simple {
|
||||||
|
border: 1px solid #9E9E9E;
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
background-color: transparent;
|
||||||
|
transition: all 100ms;
|
||||||
|
color: #9E9E9E;
|
||||||
|
margin: 1rem auto;
|
||||||
|
padding: 0.2rem 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.simple:hover {
|
||||||
|
color: black;
|
||||||
|
border-color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.simple:focus {
|
||||||
|
border-color: black;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:not([type=checkbox]), select, button.secondary {
|
||||||
|
background-color: white;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
border: 1px solid #BDBDBD;
|
||||||
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
|
||||||
|
transition: all ease-in 100ms;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 37px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input:not([type=checkbox]):focus, select:focus, button.secondary:focus {
|
||||||
|
outline: none;
|
||||||
|
border: 1px solid #00BCD4;
|
||||||
|
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox] {
|
||||||
|
transition: all ease-in 100ms;
|
||||||
|
accent-color: #4CAF50;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=checkbox]:hover {
|
||||||
|
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
color: #757575;
|
||||||
|
}
|
||||||
@ -2,11 +2,16 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Video Compressor</title>
|
<title>Video Compressor</title>
|
||||||
<script defer src="/assets/scripts/ffmpeg/package/dist/umd/ffmpeg.js"></script>
|
<script defer src="/assets/scripts/ffmpeg/package/dist/umd/ffmpeg.js"></script>
|
||||||
<script defer src="/assets/scripts/ui.js"></script>
|
<script defer src="/assets/scripts/ui.js"></script>
|
||||||
<script defer type="module" src="/assets/scripts/main.js"></script>
|
<script defer type="module" src="/assets/scripts/main.js"></script>
|
||||||
<link rel="stylesheet" href="/assets/style/main.css">
|
<link rel="stylesheet" href="/assets/styles/main.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/ui.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/file-picker-section.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/loading-section.css">
|
||||||
|
<link rel="stylesheet" href="/assets/styles/result-section.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Video Compressor</h1>
|
<h1>Video Compressor</h1>
|
||||||
@ -48,6 +53,18 @@
|
|||||||
|
|
||||||
<button id="cancel" class="simple">Cancel</button>
|
<button id="cancel" class="simple">Cancel</button>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section id="result-section" style="opacity: 0; display: none;">
|
||||||
|
<h4 id="result-title">Your video has been compressed!</h4>
|
||||||
|
<p>Result size: <span id="result-size"></span></p>
|
||||||
|
|
||||||
|
<video id="compressed-video" controls autoplay></video><br>
|
||||||
|
|
||||||
|
<button id="download" class="primary">Download</button><br>
|
||||||
|
<button id="share" class="secondary">Share video</button><br>
|
||||||
|
|
||||||
|
<button id="back" class="simple">Go back</button>
|
||||||
|
</section>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user