How to specify a file type for resumable.js uploader?

2.7k views Asked by At

I want resumable.js (file uploader) to only open a file picker for a particular file type, like mp4 or mp3.

How to specify a file type for resumable.js uploader?

1

There are 1 answers

0
Mario Negrete On

You have the option fileType you can see in the documentation. fileType default is [] but in your case should be fileType: ['mp3', 'mp4'].

var resumable = new Resumable({
  ...
  fileType: ['mp3', 'mp4'],
  ...
});

You can see a working example in https://jsfiddle.net/atomic/wn2uq53d/2/