35 lines
799 B
Go
35 lines
799 B
Go
/*
|
|
Copyright © 2023 Seednode <seednode@seedno.de>
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/h2non/filetype"
|
|
)
|
|
|
|
func RegisterVideoFormats() *SupportedType {
|
|
return &SupportedType{
|
|
title: func(queryParams, filePath, mime, fileName string, width, height int) string {
|
|
return fmt.Sprintf(`<title>%s</title>`, fileName)
|
|
},
|
|
body: func(queryParams, filePath, mime, fileName string, width, height int) string {
|
|
return fmt.Sprintf(`<a href="/%s"><video controls autoplay><source src="%s" type="%s" alt="Roulette selected: %s">Your browser does not support the video tag.</video></a>`,
|
|
queryParams,
|
|
filePath,
|
|
mime,
|
|
fileName)
|
|
},
|
|
extensions: []string{
|
|
`.mp4`,
|
|
`.ogv`,
|
|
`.webm`,
|
|
},
|
|
validator: func(head []byte) bool {
|
|
return filetype.IsVideo(head)
|
|
},
|
|
}
|
|
}
|