2

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?

Michael Lafayette
  • 2,972
  • 3
  • 20
  • 54

1 Answers1

4

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/

Mario Negrete
  • 240
  • 2
  • 7