Add m4a filetype

This commit is contained in:
Mark Cooper 2021-08-27 14:35:16 -05:00
parent 23f343f1df
commit 234653b549
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "audiobookshelf-client",
"version": "0.9.85-beta",
"version": "0.9.86-beta",
"description": "Audiobook manager and player",
"main": "index.js",
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "audiobookshelf",
"version": "0.9.85-beta",
"version": "0.9.86-beta",
"description": "Self-hosted audiobook server for managing and playing audiobooks.",
"main": "index.js",
"scripts": {

View File

@ -3,7 +3,7 @@ const dir = require('node-dir')
const Logger = require('../Logger')
const { cleanString } = require('./index')
const AUDIO_FORMATS = ['m4b', 'mp3']
const AUDIO_FORMATS = ['m4b', 'mp3', 'm4a']
const INFO_FORMATS = ['nfo']
const IMAGE_FORMATS = ['png', 'jpg', 'jpeg', 'webp']
const EBOOK_FORMATS = ['epub', 'pdf']