Is it possible to get the duration of audio files on drop? I'm wanting to do something like this ``` onDrop(files) { files.forEach((file) => { console.log(file.duration); }) } ```