live-streamer/utils/is_supported_video.go
2024-10-23 04:39:10 +08:00

14 lines
277 B
Go

package utils
import (
"live-streamer/constant"
"path/filepath"
"slices"
"strings"
)
func IsSupportedVideo(filename string) bool {
ext := strings.ToLower(filepath.Ext(filename))
return slices.Contains(constant.SupportedStreamingFormats, strings.TrimPrefix(ext, "."))
}