Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
7100 commits behind the upstream repository.
formats.js 168 B
export default {
  formats: [
    // 'audio/ogg',
    'audio/mpeg'
  ],
  formatsMap: {
    'audio/ogg': 'ogg',
    'audio/mpeg': 'mp3',
    'audio/flac': 'flac'
  }
}