diff --git a/src/mscore.ts b/src/mscore.ts index 5cc3e36..e2c61e9 100644 --- a/src/mscore.ts +++ b/src/mscore.ts @@ -118,6 +118,11 @@ export const INDV_DOWNLOADS: IndividualDownload[] = [ fileExt: 'mid', action: (score) => score.saveMidi(true, true), }, + { + name: i18n('DOWNLOAD_AUDIO')('MP3'), + fileExt: 'mp3', + action: (score) => loadSoundFont(score).then(() => score.saveAudio('mp3')), + }, { name: i18n('DOWNLOAD_AUDIO')('FLAC'), fileExt: 'flac',