I am trying to make input file accept webvtt subtitles, however if I do this:
<input type="file" name="sub_upload" accept="text/vtt">
It still shows other files along vtt extension in file browse window. Is there a way to filer files with only vtt extension?
pretty late to answer this i know but this worked for me , hope it benefits someone
<input type="file" name="sub_upload" accept=".vtt"> // for showing only .vtt files
<input type="file" name="sub_upload" accept=".vtt,pdf,.srt"> //generally for showing only .vtt , .pdf,.srt files
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With