in lex-web-ui/src/store/mutations.js [243:259]
setAudioContentType(state, type) {
switch (type) {
case 'mp3':
case 'mpg':
case 'mpeg':
state.polly.outputFormat = 'mp3';
state.lex.acceptFormat = 'audio/mpeg';
break;
case 'ogg':
case 'ogg_vorbis':
case 'x-cbr-opus-with-preamble':
default:
state.polly.outputFormat = 'ogg_vorbis';
state.lex.acceptFormat = 'audio/ogg';
break;
}
},