Add audio only transcoding tests

This commit is contained in:
Chocobozzz 2019-11-22 11:43:17 +01:00
parent 6ad88df896
commit 3a149e9f8b
No known key found for this signature in database
GPG key ID: 583A612D890159BE
8 changed files with 156 additions and 84 deletions

View file

@ -357,7 +357,7 @@ function convertCustomConfigBody (body: CustomConfig) {
function keyConverter (k: string) {
// Transcoding resolutions exception
if (/^\d{3,4}p$/.exec(k)) return k
if (/^0p$/.exec(k)) return k
if (k === '0p') return k
return snakeCase(k)
}