()
| 1106 | } |
| 1107 | |
| 1108 | function readInputAudio() { |
| 1109 | if (!this.files || !this.files.length) return; |
| 1110 | |
| 1111 | Array.from(this.files).forEach(file => { |
| 1112 | readInputAudioFile(file); |
| 1113 | }); |
| 1114 | } |
| 1115 | |
| 1116 | function readInputAudioFile(file) { |
| 1117 | const FR = new FileReader(); |
nothing calls this directly
no test coverage detected