Modify examples to only accept video and audio files

This commit is contained in:
Vanilagy
2025-07-03 11:36:04 +02:00
parent 846fa0b183
commit a8fa2e4cec
4 changed files with 4 additions and 0 deletions
@@ -113,6 +113,7 @@ const compressFile = async (file: File) => {
selectMediaButton.addEventListener('click', () => {
const fileInput = document.createElement('input');
fileInput.type = 'file';
fileInput.accept = 'video/*,video/x-matroska,audio/*';
fileInput.addEventListener('change', () => {
const file = fileInput.files?.[0];
if (!file) {