/* Copyright © 2023 Seednode */ package cmd import ( "fmt" "github.com/h2non/filetype" ) func RegisterAudioFormats() *SupportedType { return &SupportedType{ title: func(queryParams, filePath, mime, fileName string, width, height int) string { return fmt.Sprintf(`%s`, fileName) }, body: func(queryParams, filePath, mime, fileName string, width, height int) string { return fmt.Sprintf(``, queryParams, filePath, mime, fileName) }, extensions: []string{ `.mp3`, `.ogg`, `.wav`, }, validator: func(head []byte) bool { return filetype.IsAudio(head) }, } }