/* Copyright © 2023 Seednode */ package formats import ( "fmt" ) func RegisterVideoFormats() *SupportedFormat { return &SupportedFormat{ Css: ``, Title: func(queryParams, fileUri, filePath, fileName, mime string) string { return fmt.Sprintf(`%s`, fileName) }, Body: func(queryParams, fileUri, filePath, fileName, mime string) string { return fmt.Sprintf(``, queryParams, fileUri, mime, fileName) }, Extensions: []string{ `.mp4`, `.ogm`, `.ogv`, `.webm`, }, MimeTypes: []string{ `video/mp4`, `video/ogg`, `video/webm`, }, Validate: func(filePath string) bool { return true }, } }