Reputation: 5016
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?
Upvotes: 4
Views: 2872
Reputation: 1771
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
Upvotes: 8