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
+1
View File
@@ -544,6 +544,7 @@ const formatSeconds = (seconds: number) => {
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) {